码迷,mamicode.com
首页 > 系统相关 > 详细

How to Catch Ctrl-C in Shell Script

时间:2017-11-02 00:56:12      阅读:236      评论:0      收藏:0      [点我收藏+]

标签: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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!