diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-17 10:52:46 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-17 10:53:18 -0400 |
commit | 90cf049bfe9a7dcb20a1bd0d12e8b2194dbcd357 (patch) | |
tree | f4f5aebbeb3e0b2d47fc42787ba7078b77fe2480 /shell-completion/bash | |
parent | 4a449ed73d2c1cfb91a1c773b70231b3457b3046 (diff) |
shell-completion: use -a to see "empty" properties
Diffstat (limited to 'shell-completion/bash')
-rw-r--r-- | shell-completion/bash/systemctl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/systemctl b/shell-completion/bash/systemctl index 3bdf4dc956..3e51f34cba 100644 --- a/shell-completion/bash/systemctl +++ b/shell-completion/bash/systemctl @@ -24,7 +24,7 @@ __systemctl() { __systemd_properties() { local mode=$1 - { __systemctl $mode show; + { __systemctl -a $mode show; systemd --dump-configuration-items; } | while IFS='=' read -r key value; do [[ $value ]] && echo "$key" |