diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-01-10 14:55:39 +0100 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-01-10 15:21:22 +0100 |
commit | e352389a023933b61e1db5171040ca3876164061 (patch) | |
tree | 350c6f96d7d1ded2569b7a33845ec7e5e41471f7 /shell-completion/bash/systemd-run | |
parent | man: run: add missing option (diff) | |
download | systemd-e352389a023933b61e1db5171040ca3876164061.tar.xz systemd-e352389a023933b61e1db5171040ca3876164061.zip |
bash-completion: run: add missing options
Diffstat (limited to 'shell-completion/bash/systemd-run')
-rw-r--r-- | shell-completion/bash/systemd-run | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/shell-completion/bash/systemd-run b/shell-completion/bash/systemd-run index 125cd306f0..b9114fc1b5 100644 --- a/shell-completion/bash/systemd-run +++ b/shell-completion/bash/systemd-run @@ -36,15 +36,16 @@ _systemd_run() { local OPTS='-h --help --version --user --system --scope --unit --description --slice -r --remain-after-exit --send-sighup -H --host -M --machine --service-type --on-active --on-boot --on-startup --on-unit-active --on-unit-inactive - --on-calendar --timer-property -t --pty -q --quiet --no-block - --uid --gid --nice --setenv -p --property --no-ask-password - --wait' + --on-calendar --timer-property --path-property --socket-property -t --pty + -q --quiet --no-block --uid --gid --nice -E --setenv -p --property + --no-ask-password --wait -P --pipe -G --collect' local mode=--system local i local opts_with_values=( --unit --description --slice --service-type -H --host -M --machine -p --property --on-active --on-boot --on-startup --on-unit-active --on-unit-inactive --on-calendar --timer-property + --path-property --socket-property --uid --gid --nice -E --setenv ) for (( i=1; i <= COMP_CWORD; i++ )); do if [[ ${COMP_WORDS[i]} != -* ]]; then |