Create 1forloop.sh

This commit is contained in:
Ankam Ravi Kumar
2018-05-17 23:16:51 +05:30
committed by GitHub
parent 72364664ab
commit 81834e98ee

12
1forloop.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
#Purpose: One more example for for loop
#Version:
#Created Date: Wed May 16 19:31:50 IST 2018
#Modified Date:
#Author: Ankam Ravi Kumar
# START #
for i in 1 2 3 4 5
do
echo $i
done
# END #