initial commit

This commit is contained in:
2021-05-18 11:51:33 +02:00
commit 7bfff14bb3

12
wait.sh Normal file
View File

@@ -0,0 +1,12 @@
#! /bin/bash
trap func SIGINT SIGTERM
function func {
echo "haha try again young padawan"
echo $1
}
while : ; do
sleep 1
done