diff --git a/root/usr/share/bash-completion/completions/aa-log b/root/usr/share/bash-completion/completions/aa-log index bd367d80..0e01b961 100644 --- a/root/usr/share/bash-completion/completions/aa-log +++ b/root/usr/share/bash-completion/completions/aa-log @@ -3,7 +3,7 @@ _aa-log() { COMPREPLY=() local cur="${COMP_WORDS[COMP_CWORD]}" - local args=(-f -d -h) + local args=(-f -s -h) local lastarg="${COMP_WORDS[$COMP_CWORD-1]}" COMPREPLY+=($(compgen -W "${args[*]}" -- ${cur})) if [[ $lastarg == "-f" ]]; then diff --git a/root/usr/share/zsh/site-functions/_aa-log.zsh b/root/usr/share/zsh/site-functions/_aa-log.zsh index 2e77a077..7ee4d7f8 100644 --- a/root/usr/share/zsh/site-functions/_aa-log.zsh +++ b/root/usr/share/zsh/site-functions/_aa-log.zsh @@ -5,7 +5,7 @@ _aa-log() { local IFS=$'\n' _arguments : \ -f'[set a logfile or a prefix to the default log file]:FILE:__aa_files' \ - -d'[show dbus session event]' \ + -s'[parse systemd dbus logs]' \ -h'[display help information]' _values -C 'profile names' ${$(__aa_profiles):-""}