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