> 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]

Reply via email to