Add first scripts

This commit is contained in:
2024-02-22 21:02:37 +01:00
parent ddeea8beb4
commit 3cd7b9bfaf
17 changed files with 852 additions and 0 deletions

14
01_bash/prueba.sh Executable file
View File

@@ -0,0 +1,14 @@
#! /bin/bash
x=10
while [ $x -ge 0 ]
do
echo $x
x=$(($x-1))
done
echo ""
for i in {10..0}; do
echo "$i"
done