tp2-adminsys/monshell3.sh
2022-10-12 10:38:51 +02:00

10 lines
96 B
Bash
Executable file

#!/bin/bash
nombre=100
until [[ $nombre -eq 0 ]]
do
echo $nombre
nombre=$((nombre -1))
done