]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
bash-completion: dmesg: add missing long options
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Fri, 10 Oct 2025 20:18:29 +0000 (16:18 -0400)
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Fri, 10 Oct 2025 21:20:23 +0000 (17:20 -0400)
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
bash-completion/dmesg

index 537021ff810abb1a02ed74e0782feacadf571a2a..15a7888b242b00ed8464203e9c546c41d6169793 100644 (file)
@@ -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