如何使用Ctrl + C来停止整个脚本而不仅仅是当前命令

时间:2015-08-21 16:54:25

标签: bash ctrl

我有一个如下脚本:

for ((i=0; i < $srccount; i++)); do
    echo -e "\"${src[$i]}\" will be synchronized to \"${dest[$i]}\""
    echo -e $'Press any key to continue or Ctrl+C to exit...\n' 
    read -rs -n1
    rsync ${opt1} ${opt2} ${opt3} ${src[$i]} ${dest[$i]}
done

如果我按 Ctrl + C 以响应读取命令,整个脚本将停止,但如果按 Ctrl + C rsync命令正在运行时,只有当前rsync命令将停止,脚本将继续for循环。

如果用户在rsync运行时按 Ctrl + C ,有没有办法告诉脚本,请停止rsync并退出脚本本身?

2 个答案:

答案 0 :(得分:14)

Ctrl + C 发送中断信号SIGINT。你需要通过trap内置函数

告诉bash在收到此信号时退出
trap "exit" INT
for ((i=0; i < $srccount; i++)); do
    echo -e "\"${src[$i]}\" will be synchronized to \"${dest[$i]}\""
    echo -e $'Press any key to continue or Ctrl+C to exit...\n' 
    read -rs -n1
    rsync ${opt1} ${opt2} ${opt3} ${src[$i]} ${dest[$i]}
done

你可以做的不仅仅是在收到信号时退出。通常,临时清理文件是在信号处理程序中完成的。有关详细信息,请参阅bash documentation

答案 1 :(得分:-1)

只需按 Ctrl + Z。它会完全停止您的脚本。