diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-01-09 20:21:28 +0900 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2020-01-09 15:43:18 +0100 |
commit | 0ca1926ec314d66e7400fb9821889866ccdd02cc (patch) | |
tree | 29f8fd8c046b195d70b4bd4c6b085e559249115b /shell-completion/bash | |
parent | 404308486aa285c67c5af4c8e7d6be393ce5a3c7 (diff) | |
download | systemd-0ca1926ec314d66e7400fb9821889866ccdd02cc.tar.gz |
bash-completion: networkctl: support --full and --lines
Diffstat (limited to 'shell-completion/bash')
-rw-r--r-- | shell-completion/bash/networkctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/bash/networkctl b/shell-completion/bash/networkctl index 290a62f811..47fff4a2dc 100644 --- a/shell-completion/bash/networkctl +++ b/shell-completion/bash/networkctl @@ -32,8 +32,8 @@ _networkctl() { local i verb comps local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} local -A OPTS=( - [STANDALONE]='-a --all -h --help --version --no-pager --no-legend -s --stats' - [ARG]='' + [STANDALONE]='-a --all -h --help --version --no-pager --no-legend -s --stats -l --full' + [ARG]='-n --lines' ) local -A VERBS=( |