This commit is contained in:
Ionel Andrei Cataon
2025-12-11 19:48:49 +02:00
parent ac323963e0
commit 88c2c52751
3 changed files with 47 additions and 0 deletions

20
Bash_scripting/while.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
x=1
while (( $x < "10" ))
do
echo "Valoarea lui x este: $x"
x=$(( x+1 ))
done
ar=(11 15 86 23 45 78)
Lenght=${#ar[@]}
echo "Lungimea array-ului este: $lenght"
ar=(32 10 132 32 5 7 43 104)
i=0
lenght=${#ar[@]}
while [ $i -lt $lenght ];
do
echo "Elementul $i din array este: ${ar[$i]}"
i=$(( i+1))
done