Files
scripts_grundkurs/Labb5/ovning1.sh
2013-12-14 22:07:28 +01:00

15 lines
173 B
Bash
Executable File

#!/bin/bash
# Jack-Benny Persson
# LX13
# Övning 1, labb 5
read -p "Enter a number between 10 and 100: " Num
until [ $Num -eq 1 ]; do
((Num--))
echo $Num
done
exit 0