erste Scripts für Teil 11 (if)

This commit is contained in:
Olli Graf
2024-07-26 12:06:31 +02:00
parent 52838b8724
commit b1871443df
5 changed files with 66 additions and 0 deletions

11
teil11/strings.sh Normal file
View File

@@ -0,0 +1,11 @@
#strings.sh
string1='Skinner'
if [[ ${string1} == 'Skinner' ]]; then
echo "Es ist Skinner"
else
echo " Es ist nicht Skinner"
fi