teil02 teil11 und teil12

This commit is contained in:
2024-07-29 08:01:42 +02:00
parent b1871443df
commit ae9e94b262
9 changed files with 143 additions and 3 deletions

14
teil12/forloop.sh Normal file
View File

@@ -0,0 +1,14 @@
#forloop.sh
#Ausgabe der ungeraden Zahlen bis 10
for i in 1 3 5 7 9; do
echo "i=${i}"
done
#Ausgabe aller Dateien in /etc
for d in /etc/*; do
echo "${d}"
done