spinix-hive/scripts/test1.sh

9 lines
89 B
Bash

#shell
#This script loops from 1 to 10
a=1
while [ $a -le 10 ]
do
echo $a
let a=a+1
done