How to read data from file to use in shell script?
Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
How to read data from file to use in shell script?
I'm trying to create a shell script that makes use of a data file with text on individual lines. I want the script to read the first line of the data file, then the second line etc. etc.
I can't seem to find out which command to use - sorry if this is a simple one!
I have tried a few man pages but if you don't know which command you're looking for it's difficult to work backwards!
Cheers,
may I hijack the thread and ask how to make it seperate the lines instead of the words? The above code will print every word and not sentences, so a file containing,
this is a test line
this is another test line
will return:
this
is
a
test
line
this
is
another
test
line
when I want a specified sentence (like line 2) to be placed in a variable.
Edit: I thought I knew SED pretty well, but I had never knew you could do it there. Here is an example if someone else needs it. LINE2="`sed -n '2p'file-location`"
Edit: I thought I knew SED pretty well, but I had never knew you could do it there. Here is an example if someone else needs it. LINE2="`sed -n '2p'file-location`"
Need a space before file
The quotes are not needed, since the "`" makes a container
Thus: LINE2=`sed -n '2p' file-location`
Yes, sed is cool....
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.