diff options
Diffstat (limited to 'shell-completion/bash/systemd-path')
-rw-r--r-- | shell-completion/bash/systemd-path | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/systemd-path b/shell-completion/bash/systemd-path index cdaf29794e..2f0c5f5bd7 100644 --- a/shell-completion/bash/systemd-path +++ b/shell-completion/bash/systemd-path @@ -24,7 +24,7 @@ __contains_word () { } __get_names() { - systemd-path | cut -d: -f1 | sort -u + systemd-path | { while IFS=: read -r a b; do echo " $a"; done; } } _systemd_path() { |