Diapositivas y scripts de taller 1

This commit is contained in:
2024-04-17 21:50:31 +02:00
parent 71d62165fa
commit ce5c8f2c35
14 changed files with 135 additions and 0 deletions

10
taller1/scripts/09.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
i=0
while [[ $i -lt 15 ]]
do
echo "Soy el ciclo número $i"
((i++))
done
echo "He terminado el ciclo"