This commit is contained in:
Pim van den Berg
2022-09-23 15:31:44 +02:00
commit 64e1fc08e4
6 changed files with 173 additions and 0 deletions

5
start.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
trap "touch SIGINT.tmp; ls -l; exit" INT TERM
trap "echo 'really exiting'; exit" EXIT
echo Starting loop
while true; do sleep 1; done