6 lines
144 B
Bash
6 lines
144 B
Bash
|
#!/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
|