> Chris G Haravata wrote: > > haba ng subject line ano? :) > > anyway, the problem is this: i need to create a script which will > automatically create user home directories from a file. but i need to > read the file first from within the script. the file looks like the > ff: > > /home/2000/abc-123455 > /home/1995/def-678901 > /home/2001/ghi-234567 > <etc until 1125 lines later> > > problem is: is there a command to use which will read each line of > the file and put the contents of that line in a variable? #!/bin/bash for SOMEVAR in `cat somefile.txt`; do echo $SOMEVAR; done # This will iterate over the lines in somefile.txt # Brian _ Philippine Linux Users Group. Web site and archives at http://plug.linux.org.ph To leave: send "unsubscribe" in the body to [EMAIL PROTECTED] To subscribe to the Linux Newbies' List: send "subscribe" in the body to [EMAIL PROTECTED]
- [plug] readiing a line from a file and putting that i... Chris G Haravata
- Re: [plug] readiing a line from a file and putti... Mike Blancas
- RE: [plug] readiing a line from a file and p... Chris G Haravata
- Re: [plug] readiing a line from a file a... eric pareja
- RE: [plug] readiing a line from a fi... Chris G Haravata
- RE: [plug] readiing a line from a file and putti... Brian Baquiran
- RE: [plug] readiing a line from a file and p... Chris G Haravata
- RE: [plug] readiing a line from a file a... Mike Blancas
- Re: [plug] readiing a line from a file a... Brian Baquiran
- Re: [plug] readiing a line from a file a... Raymund dos Remedios
- Re: [plug] readiing a line from a file a... Juan Miguel Cacho
- Re: [plug] readiing a line from a file and putti... Ian C. Sison
- RE: [plug] readiing a line from a file and p... Chris G Haravata
- Re: [plug] readiing a line from a file a... Raymund dos Remedios
- Re: [plug] readiing a line from a file and putti... Federico Sevilla III
- Re: [plug] readiing a line from a file and p... Mike Maravillo
