You've already forked scripts-random
Add first scripts
This commit is contained in:
14
01_bash/prueba.sh
Executable file
14
01_bash/prueba.sh
Executable 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
|
||||
Reference in New Issue
Block a user