https://bz.apache.org/bugzilla/show_bug.cgi?id=63041
--- Comment #18 from Konstantin Kolinko <[email protected]> --- For a reference: POSIX-2018 documentation on Shell Command Language: http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html The $! parameter is defined in section "2.5.2 Special Parameters" of that document. "$!" returns a PID of a background command, but '&&' separates foreground commands, and it will wait until the first command completes. Thus no PID file is created. I also wonder how nohup command fits into all this (triggered via $USE_NOHUP and represented by $_NOHUP here). -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
