logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Waitpid - Control Process Termination | Online Free DevTools by Hexmos

Control process termination with Waitpid. Monitor, manage, and debug processes by waiting for their completion. Free online tool, no registration required.

waitpid

Wait for the termination of arbitrary processes. See also: wait. More information: https://manned.org/waitpid.1.

  • Sleep until all processes whose PIDs have been specified have exited:

waitpid {{pid1 pid2 ...}}

  • Sleep for at most n seconds:

waitpid {{[-t|--timeout]}} {{n}} {{pid1 pid2 ...}}

  • Do not error if specified PIDs have already exited:

waitpid {{[-e|--exited]}} {{pid1 pid2 ...}}

  • Sleep until n of the specified processes have exited:

waitpid {{[-c|--count]}} {{n}} {{pid1 pid2 ...}}

  • Display help:

waitpid {{[-h|--help]}}

See Also