diff options
author | jilles <jilles@FreeBSD.org> | 2009-11-17 22:47:20 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2009-11-17 22:47:20 +0000 |
commit | 0a8c57af7883d5a91fe9151fd222dc2c0c09ef5d (patch) | |
tree | 3c8ade95b95652f886ab237b58e78d9ea1ea9e2a /bin/Makefile | |
parent | 9ca1cabe1091eb9c0d99a593e9c97375abb3a218 (diff) | |
download | FreeBSD-src-0a8c57af7883d5a91fe9151fd222dc2c0c09ef5d.zip FreeBSD-src-0a8c57af7883d5a91fe9151fd222dc2c0c09ef5d.tar.gz |
Add pwait utility, which waits for any process to terminate.
This is similar to the Solaris utility of the same name.
Some use cases:
* rc.subr's wait_for_pids
* interactive use, e.g. to shut down the computer when some task is done
even if the task is already running
Discussed on: hackers@
Diffstat (limited to 'bin/Makefile')
-rw-r--r-- | bin/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/Makefile b/bin/Makefile index 7491be9..3114e67 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -27,6 +27,7 @@ SUBDIR= cat \ pax \ pkill \ ps \ + pwait \ pwd \ ${_rcp} \ realpath \ |