diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-01-10 04:13:12 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2020-01-10 04:13:12 +0100 |
commit | 6c64cf8859eab94b151345fb49542416e270149a (patch) | |
tree | cd3f0bb214401f5015b531d5653e069aa44fd338 | |
parent | networkctl: set table width 0 when --full is specified (diff) | |
download | systemd-6c64cf8859eab94b151345fb49542416e270149a.tar.xz systemd-6c64cf8859eab94b151345fb49542416e270149a.zip |
bash-completion: networkctl: do not show ellipsized link name
-rw-r--r-- | shell-completion/bash/networkctl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/networkctl b/shell-completion/bash/networkctl index 47fff4a2dc..8413afa867 100644 --- a/shell-completion/bash/networkctl +++ b/shell-completion/bash/networkctl @@ -25,7 +25,7 @@ __contains_word () { } __get_links() { - networkctl list --no-legend --no-pager --all | { while read -r a b c; do echo " $b"; done; }; + networkctl list --no-legend --no-pager --all --full | { while read -r a b c; do echo " $b"; done; }; } _networkctl() { |