Write a shell script that use the for loop to output the list of parameters given to the it. code example
Example 1: bash for i
for VARIABLE in 1 2 3 4 5 .. N
do
command1
command2
commandN
done
Example 2: bash script loop
while [ <some test> ]
do
<commands>
done