如何在bash脚本中引发信号?

时间:2012-04-09 09:29:21

标签: bash signals

我写了一个脚本来做一些备份。有一个if块要求确认:

read -p "Do you want to continue? [y/n]" confirm

if [[ ${confirm} == "n" ]]; then
    # do something like CTRL+Z, and halt until I run fg <job number> to activate this script
else
    # do some stuff
fi

任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分:3)

您可以使用kill -STOP $$,或在bash中使用suspend命令。