aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcgoesche <cgoesc2@wgu.edu>2025-11-01 19:46:27 -0400
committercgoesche <cgoesc2@wgu.edu>2025-11-02 09:42:19 -0500
commit3b9f287a8c5b2f561bd6bbc7a4b4fe2a8e797f6b (patch)
tree736a28fcd12cc851fe79f5cb5081c0c0bbc515db
parent2ce6bcc507e56b34584960e26af16b48984feb7e (diff)
downloadutil-linux-3b9f287a8c5b2f561bd6bbc7a4b4fe2a8e797f6b.tar.gz
bash-completion: (pg) add missing long options
Signed-off-by: cgoesche <cgoesc2@wgu.edu>
-rw-r--r--bash-completion/pg2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash-completion/pg b/bash-completion/pg
index 8fce1302ab..04b47f340b 100644
--- a/bash-completion/pg
+++ b/bash-completion/pg
@@ -15,7 +15,7 @@ _pg_module()
esac
case $cur in
-*)
- OPTS="-number -c -e -f -n -p -r -s -h -V"
+ OPTS="-number -c -e -f -n -p -r -s -h -V --help --version"
COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
return 0
;;