From d1732bba383a95786b5ec7bc1f4a173b644fe871 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 10 Nov 2021 10:56:02 +0100 Subject: [PATCH] bash-completion: fix irqtop Forgot update the option as introduced by commit 17f7caa45105f0cbf8bf9b562468fba2c5d4a549. Signed-off-by: Karel Zak --- bash-completion/irqtop | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bash-completion/irqtop b/bash-completion/irqtop index 6dae28924e..a3812acbb6 100644 --- a/bash-completion/irqtop +++ b/bash-completion/irqtop @@ -5,7 +5,7 @@ _irqtop_module() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" case $prev in - '-c'|'--cpus') + '-c'|'--cpu-stat') COMPREPLY=( $(compgen -W "auto enable disable" -- $cur) ) return 0 ;; @@ -34,7 +34,7 @@ _irqtop_module() return 0 ;; esac - OPTS=" --cpus + OPTS=" --cpu-stat --delay --sort --output -- 2.47.3