#!/bin/bash # 持续查询 eef 进程的 pid while true do #查询进程pid eef_pid=$(pgrep eef) if [ -n "$pid" ]; then # 执行 top 命令,输出到 /tmp/test.txt top -b -d 60 -p "$eef_pid" >/tmp/test.txt # 记录top命令的进程号 top_pid=$! break fi #暂停1s后继续查询 sleep 1 done # 检测eef进程是否存在 while [[ -e /proc/$eef_pid ]] do sleep 1 done # 如果eef进程不存在了,就结束top命令 kill -9 $top_pid exit 结尾的exit为什么没有生效
时间: 2023-12-14 17:36:49 浏览: 115
#!-bin bash#俄罗斯方块游戏#10.21.2003 xhchen电子邮件xhchen@winb
这是因为 exit 命令只会终止当前 shell 进程,而不会终止在当前 shell 进程中启动的子进程。在你的脚本中,top 命令是在一个子进程中执行的,因此即使在该子进程中执行了 exit 命令,也不会终止主进程。如果你希望在 top 命令执行完毕后立即终止脚本,可以在执行 top 命令时使用 exec 命令将子进程替换为 top 命令,并在 top 命令执行完毕后直接退出脚本,例如:
```
#!/bin/bash
# 持续查询 eef 进程的 pid
while true
do
#查询进程pid
eef_pid=$(pgrep eef)
if [ -n "$eef_pid" ]; then
# 执行 top 命令,输出到 /tmp/test.txt
exec top -b -d 60 -p "$eef_pid" >/tmp/test.txt
fi
#暂停1s后继续查询
sleep 1
done
# 如果 top 命令执行完毕,就直接退出脚本
exit
```
这样,在 top 命令执行完毕后,脚本就会立即退出,不需要再使用 kill 命令终止 top 进程了。
阅读全文