Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在后台运行的 bash 脚本,它每 5 秒循环执行一次。这会影响在 shell 本身上执行的命令。
有没有办法,我可以暂停脚本执行,直到 shell 不执行其他命令。
谢谢
停止你可以使用的 scipt
kill -s STOP $PID
其中 $PID 包含脚本的进程 ID。要重新启动它,请使用
kill -s CONT $PID
Renice 应该在这种情况下提供帮助。使用 renice,您可以降低/提高进程的优先级。查看手册页以获得更详细的帮助。