docker-swiss/start.sh

6 lines
144 B
Bash
Raw Normal View History

2022-09-23 15:31:44 +02:00
#!/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