How to get PID from forked child process in shell script

前端 未结 2 1241
情歌与酒
情歌与酒 2021-02-02 08:54

I believe I can fork 10 child processes from a parent process.

Below is my code:

#/bin/sh
fpfunction(){
    n=1
    while (($n<20))
    do
        ech         


        
2条回答
  •  离开以前
    2021-02-02 09:18

    From the Bash manual:

    !

    Expands to the process ID of the most recently executed background (asynchronous) command.

    i.e., use $!.

提交回复
热议问题