This commit is contained in:
Olli Graf
2024-09-08 11:33:42 +02:00
parent 407d7ef5c0
commit 36837548d2
3 changed files with 24 additions and 0 deletions

10
teil14/ifexit.sh Executable file
View File

@@ -0,0 +1,10 @@
#! /usr/bin/bash
./sub.sh ${1}
if [ ${?} -eq 0 ]; then
echo "sub.sh erfolgreich"
else
echo "sub.sh fehlgeschlagen"
fi