在一个 shell 程序中,我想启动一个程序并获取它的 PID 并保存在一个临时文件中。但是这里我会在前台启动程序,直到进程处于运行状态才会退出shell
前任:
#!/bin/bash
myprogram &
echo "$!" > /tmp/pid
这很好用,我能够获得已启动进程的 pid。但是如果我在前台启动程序,我想知道如何获取 pid
前任 :
#!/bin/bash
myprogram /// hear some how i wan to know the PID before going to next line