diff options
Diffstat (limited to 'bash-completion/lsipc')
| -rw-r--r-- | bash-completion/lsipc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bash-completion/lsipc b/bash-completion/lsipc index a40fe42860..047126a444 100644 --- a/bash-completion/lsipc +++ b/bash-completion/lsipc @@ -9,6 +9,10 @@ _lsipc_module() COMPREPLY=( $(compgen -W "id" -- $cur) ) return 0 ;; + '-N'|'--name') + COMPREPLY=( $(compgen -W "name" -- $cur) ) + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; @@ -45,10 +49,14 @@ _lsipc_module() esac OPTS=" --shmems + --posix-shmems --queues + --posix-mqueues --semaphores + --posix-semaphores --global --id + --name --noheadings --notruncate --time-format @@ -62,6 +70,7 @@ _lsipc_module() --numeric-perms --raw --time + --shell --help --version " |
