We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e830537 commit 660e57dCopy full SHA for 660e57d
tutorial/0-completion
@@ -21,3 +21,18 @@ printf "You are currently in %s directory and completion is enabled.\\\\n" \
21
printf "Try:\\\n\\\\n./1-basics -<tab><tab>\\\\n\\\\n"
22
EOF
23
exec bash --rcfile <(printf %s "$bashrc") -i
24
+
25
+cat <<EOF
26
27
+As you can see, the Bash Argsparse Completion module can automatically
28
+enable the bash completion for the scripts you develop with the Bash
29
+Argsparse library.
30
31
+To enable completion for your own scripts, please ensure
32
+bash_completion is enabled, and then in your ~/.bashrc, add lines such
33
+as:
34
35
+ . argsparse-completion.sh
36
+ complete -F _argsparse_complete yourscript your_other_script
37
38
+EOF
0 commit comments