The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #4 (permalink)  
Old 10-11-2008
otheus's Avatar
otheus otheus is offline Forum Staff  
Moderator ala Mode
  
 

Join Date: Feb 2007
Location: Innsbruck, Austria
Posts: 1,864
We're both giving you essentially the same answer. When you mean "each line individually", do you mean you want each in its own variable? Bash3 supports arrays, so you could do it that way. If your file contains a fixed number of lines, say 3, you could do this:
Code:
cat yourfile.txt | {
  read line1
  read line2
  read line3

  # do stuff with line1 or line2 or line3
}