May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

korn shell (ksh) – for loop

Reading from a file

for line in $(cat /etc/passwd)
do
echo $line
done

Iterate for a range

for number in {1..10}
do
echo “Current number is $number”
done

Loop for values given

for planet in earth mars saturn jupiter
do
echo “The planet name is $planet”
done

Loop for variable containing multiple values

planets=”earth mars saturn jupiter pluto”
for planet in $planets
do
echo “The planet name is $planet”
done

Leave a Reply

You can use these HTML tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>