From 47f0f839b3712e5aa3ac04bf3a47be57f55a2b49 Mon Sep 17 00:00:00 2001 From: jefferycjones Date: Mon, 23 May 2016 15:46:41 -0400 Subject: [PATCH] wait: add page --- pages/common/wait.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pages/common/wait.md diff --git a/pages/common/wait.md b/pages/common/wait.md new file mode 100644 index 000000000..49cbd09a9 --- /dev/null +++ b/pages/common/wait.md @@ -0,0 +1,11 @@ +# wait + +> Wait for a process to complete before proceeding. + +- Wait for given process id (pid) to finish and return its exit status: + +`wait {{pid}}` + +- Wait for all processes known to the invoking shell to finish: + +`wait`