The UNIX and Linux Forums  


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 -->
  #1 (permalink)  
Old 08-29-2008
prashant43's Avatar
prashant43 prashant43 is offline
Registered User
  
 

Join Date: Jan 2008
Location: Bangalore
Posts: 29
Exclamation For loop in ksh..Please help..

Hi ALL,

I need to take some command line arguments for my script and then want to run a function for each argument.I thought of using for loop as below, but its not working , can some one please help...
#!/bin/ksh
lpar1=$1
lpar2=$2
lpar3=$3
lpar4=$4
lpar5=$5
echo "$lpar1" >>lpar.txt
echo "$lpar2" >>lpar.txt
echo "$lpar3" >>lpar.txt
echo "$lpar4" >>lpar.txt
echo "$lpar5" >>lpar.txt
for lpar in lpar.txt
do
validation "$lpar"
done


validation is a function.