The UNIX and Linux Forums  


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




Thread: for/while
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 06-04-2008
jkl_jkl jkl_jkl is offline
Registered User
  
 

Join Date: Aug 2007
Posts: 46
for/while

This is an example of one of my requirement:


Code:
$ cat any
A C F
D 4
A F C V

A)

$ while read line
> do
> echo $line
> done < any

A C F
D 4
A F C V

B)

$ for line in `cat any`
> do
> echo $line
> done

A
C
F
D
4
A
F
C
V

Using "for" how can I achieve the same output as while offers(A) ?