diff options
| author | Karel Zak <kzak@redhat.com> | 2023-03-03 13:01:18 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2023-03-03 13:01:18 +0100 |
| commit | 7dcb35dd176443238859de18cc73f0906287b91d (patch) | |
| tree | 5676ca2df30f16c966900dd72b2cd5d0e745cab6 /bash-completion | |
| parent | 3b077eca0c01b386bd86a4639def65b14128d521 (diff) | |
| parent | f0e793a3d9083aa5d8bfe1ec27ce107f2df6780f (diff) | |
| download | util-linux-7dcb35dd176443238859de18cc73f0906287b91d.tar.gz | |
Merge branch 'waitpid/count' of https://github.com/t-8ch/util-linux
* 'waitpid/count' of https://github.com/t-8ch/util-linux:
waitpid: allow to only wait for a specific number of process exits
Diffstat (limited to 'bash-completion')
| -rw-r--r-- | bash-completion/waitpid | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bash-completion/waitpid b/bash-completion/waitpid index 67601bb8f7..60ea275afc 100644 --- a/bash-completion/waitpid +++ b/bash-completion/waitpid @@ -9,6 +9,9 @@ _waitpid_module() COMPREPLY=( $(compgen -W "seconds" -- $cur) ) return 0 ;; + '-c'|'--count') + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; @@ -18,6 +21,7 @@ _waitpid_module() OPTS="--verbose --timeout --exited + --count --help --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) |
