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
teil11/ifeq.sh Normal file
View File

@@ -0,0 +1,10 @@
# ifeq.sh
a=10
if [ ${a} = 10 ]; then
echo "a ist 10"
else
echo "a ist ungleich 10"
fi