我有一个如下脚本:
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
并退出脚本本身?
答案 0 :(得分:14)
Ctrl + C 发送中断信号SIGINT
。你需要通过trap
内置函数
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。它会完全停止您的脚本。