teil11 und teil13

This commit is contained in:
Olli Graf
2024-08-18 16:42:01 +02:00
parent 197da26fa9
commit f979f9952d
4 changed files with 39 additions and 0 deletions

10
teil13/paramloop.sh Executable file
View File

@@ -0,0 +1,10 @@
#! /usr/bin/bash
#paramloop.sh
let count=0
for p in "${@}"; do
echo "Param ${count}: ${p}"
let count=count+1
done