From: Prasanna Paithankar Date: Sun, 2 Feb 2025 17:04:20 +0000 (+0530) Subject: bash-completion: updated lsns bash completion X-Git-Tag: v2.42-start~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ee710cf63b8a4f5e34f1fbe2296b77649113b4a;p=thirdparty%2Futil-linux.git bash-completion: updated lsns bash completion --- diff --git a/bash-completion/lsns b/bash-completion/lsns index 79c719056..c7518bacb 100644 --- a/bash-completion/lsns +++ b/bash-completion/lsns @@ -26,7 +26,7 @@ _lsns_module() return 0 ;; '-t'|'--type') - COMPREPLY=( $(compgen -W "mnt net ipc user pid uts cgroup" -- $cur) ) + COMPREPLY=( $(compgen -W "mnt net ipc user pid uts cgroup time" -- $cur) ) return 0 ;; '-h'|'--help'|'-V'|'--version') @@ -36,6 +36,7 @@ _lsns_module() case $cur in -*) COMPREPLY=( $(compgen -W " + --list-columns --filter --json --list @@ -46,14 +47,15 @@ _lsns_module() --task --raw --notruncate + --nowrap --type + --tree --help --version " -- $cur) ) return 0 ;; esac - COMPREPLY=( $(compgen -W "mnt net pid uts ipc user" -- $cur ) ) return 0 } complete -F _lsns_module lsns