Back to home page

Enduro/X

 
 

    


0001 #!/bin/bash
0002 
0003 echo "Starting ignore.sh"
0004 
0005 trap 'echo Ignoring SIGINT' SIGINT
0006 trap 'echo Ignoring SIGTERM' SIGTERM
0007 
0008 while [[ 1 == 1 ]]; do
0009         # restart at interrupts
0010         read < ./test25_sleep.fifo
0011 done
0012