diff options
| author | Prasanna Paithankar <paithankarprasanna@gmail.com> | 2025-02-02 23:37:44 +0530 |
|---|---|---|
| committer | Prasanna Paithankar <paithankarprasanna@gmail.com> | 2025-02-02 23:37:44 +0530 |
| commit | 0f5e95f22866619c61eed8549c71accc8ab24beb (patch) | |
| tree | fdc49350856171fc4c356ae7f3d18563aec0ea17 /bash-completion/lsipc | |
| parent | 27704d22e5c235019e02233803c1cbda1e2467ac (diff) | |
| download | util-linux-0f5e95f22866619c61eed8549c71accc8ab24beb.tar.gz | |
bash completions for IPC tools
Signed-off-by: Prasanna Paithankar <paithankarprasanna@gmail.com>
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 " |
