mirror of
https://github.com/techarkit/shell-scripting-tutorial.git
synced 2025-07-25 01:28:51 +00:00
Create 1forloop.sh
This commit is contained in:
12
1forloop.sh
Normal file
12
1forloop.sh
Normal 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 #
|
Reference in New Issue
Block a user