From: Christian Goeschel Ndjomouo Date: Fri, 10 Oct 2025 20:18:29 +0000 (-0400) Subject: bash-completion: dmesg: add missing long options X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7419cae9f59c1516e32cde5c982be1d1a21e2fd7;p=thirdparty%2Futil-linux.git bash-completion: dmesg: add missing long options Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/bash-completion/dmesg b/bash-completion/dmesg index 537021ff8..15a7888b2 100644 --- a/bash-completion/dmesg +++ b/bash-completion/dmesg @@ -32,35 +32,37 @@ _dmesg_module() return 0 ;; esac - OPTS="--clear - --read-clear + OPTS="--buffer-size + --clear + --color + --console-level --console-off - --show-delta - --reltime --console-on - --file + --ctime + --decode --facility + --file + --follow + --follow-new + --force-prefix + --help --human --json --kernel - --color + --kmsg-file --level - --console-level --noescape --nopager + --notime --raw + --read-clear + --reltime + --show-delta + --since --syslog - --buffer-size - --ctime - --notime --time-format - --userspace - --follow - --follow-new - --decode - --since --until - --help + --userspace --version" COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) ) return 0