diff --git a/redfish-client/etc/bash_completion.d/redfish-client.bash b/redfish-client/etc/bash_completion.d/redfish-client.bash new file mode 100644 index 0000000..d1f739e --- /dev/null +++ b/redfish-client/etc/bash_completion.d/redfish-client.bash @@ -0,0 +1,11 @@ +_redfish-client_complete_baseopts() +{ + case $2 in + + --help|-h) + return 0 + ;; + + esac + return 1 +}