如何在shell脚本中断时触发命令?

时间:2013-02-05 07:23:04

标签: bash shell sh interrupt-handling

当shell脚本在执行过程中被中断时,我想触发像“rm -rf /etc/XXX.pid”这样的命令。就像使用CTRL+C一样 任何人都可以帮我在这做什么?

2 个答案:

答案 0 :(得分:8)

尽管对许多人来说可能会感到震惊,但您可以使用bash内置trap来捕获信号: - )

好吧,至少那些可以被困,但CTRL-C通常与INT信号相关联。您可以捕获信号并执行任意代码。

以下脚本会要求您输入一些文本然后回复给您。如果偶然,你会产生一个INT信号,它只会咆哮并退出:

#!/bin/bash

exitfn () {
    trap SIGINT              # Restore signal handling for SIGINT
    echo; echo 'Aarghh!!'    # Growl at user,
    exit                     #   then exit script.
}

trap "exitfn" INT            # Set up SIGINT trap to call function.

read -p "What? "             # Ask user for input.
echo "You said: $REPLY"

trap SIGINT                  # Restore signal handling to previous before exit.

测试运行副本跟随(完整输入的行,在任何条目之前按下CTRL-C的行,以及在按CTRL-C之前具有部分条目的行):

pax> ./testprog.sh 
What? hello there
You said: hello there

pax> ./testprog.sh 
What? ^C
Aarghh!!

pax> ./qq.sh
What? incomplete line being entere... ^C
Aarghh!!

答案 1 :(得分:3)

trap用于捕获脚本中的信号,包括按下Ctrl-C时生成的SIGINT