13 lines
113 B
Bash
Executable File

#!/bin/bash
# Jack-Benny Persson
# LX13
# For test
for (( Num=1; $Num < 11; Num++))
do
echo $Num
done
exit 0