Linux - Newbie This 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
08-26-2006, 02:55 PM
|
#1
|
Member
Registered: Aug 2005
Location: West Midlands, UK
Posts: 61
Rep:
|
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,
Oz
|
|
|
08-26-2006, 03:28 PM
|
#2
|
Member
Registered: Mar 2005
Location: NJ - US
Distribution: Slackware
Posts: 93
Rep:
|
just to read the content of the file and echo them
Code:
#!/bin/sh
var=`cat file`
for i in $var; do
echo $i
done
of course that you should verify if the file exist and bla bla bla 
|
|
|
08-26-2006, 03:33 PM
|
#3
|
Member
Registered: Aug 2005
Location: West Midlands, UK
Posts: 61
Original Poster
Rep:
|
aha! Thanks
|
|
|
10-27-2006, 11:05 AM
|
#4
|
Member
Registered: Aug 2005
Posts: 158
Rep:
|
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`"
Last edited by Fredde87; 10-27-2006 at 11:16 AM.
|
|
|
10-27-2006, 12:47 PM
|
#5
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
If I remember correctly, awk reads one line at a time.
|
|
|
10-27-2006, 12:58 PM
|
#6
|
Member
Registered: Oct 2005
Location: Annapolis
Distribution: Ubuntu
Posts: 278
Rep:
|
Correct
Quote:
Originally Posted by pixellany
If I remember correctly, awk reads one line at a time.
|
You beat me to it!
|
|
|
10-27-2006, 01:04 PM
|
#7
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
Quote:
Originally Posted by Fredde87
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.... 
|
|
|
10-27-2006, 01:19 PM
|
#8
|
LQ Veteran
Registered: Nov 2005
Location: Annapolis, MD
Distribution: Mint
Posts: 17,809
|
Quote:
Originally Posted by Dragineez
You beat me to it!
|
My motorcycle is faster... 
|
|
|
All times are GMT -5. The time now is 02:13 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|