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 > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #1 (permalink)  
Old 09-28-2007
er_ashu er_ashu is offline
Registered User
  
 

Join Date: Apr 2007
Posts: 50
A basic question of FOR loop

Hi,
have a basic query.
Please see the below code:

list="one two three"
for var in $list ; do
echo $var
list="nolist"
Done

Wht if I want to print only first/ last line in the list

Eg one & three

Regards
er_ashu