标签:https you his initial exe line signal init led
#!/bin/sh # this function is called when Ctrl-C is sent function trap_ctrlc () { # perform cleanup here echo "Ctrl-C caught...performing clean up" echo "Doing cleanup" # exit shell script with error code 2 # if omitted, shell script will continue execution exit 2 } # initialise trap to call trap_ctrlc function # when signal 2 (SIGINT) is received trap "trap_ctrlc" 2 # your script goes here echo "going to sleep" sleep 1000 echo "end of sleep"
How to Catch Ctrl-C in Shell Script
标签:https you his initial exe line signal init led
原文地址:http://www.cnblogs.com/pinganzi/p/7769107.html