docker-swiss/start.sh

6 lines
144 B
Bash
Executable File

#!/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