2

我写了一个脚本来做一些备份。有一个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

谁能帮忙?

4

1 回答 1

4

你可以使用kill -STOP $$, 或者bash你可以使用suspend命令。

于 2012-04-09T09:33:17.567 回答