We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c46426d commit 4d34c0aCopy full SHA for 4d34c0a
1 file changed
README.md
@@ -20,6 +20,9 @@ fi
20
# --debug 3
21
DEBUG_LEVEL="$(argValue "debug")" # 3
22
23
+# --max-size=1024
24
+MAX_SIZE="$(argValue "max-size")" # 1024
25
+
26
# -R 0
27
[ "$(argValue "R")" == "0" ] && echo "Recursive depth 0"
28
@@ -58,6 +61,11 @@ if argExists 'long-argument-name'; then
58
61
# Do something awesome
59
62
fi
60
63
64
+# --protocol=HTTP
65
+if argExists 'protocol'; then
66
+ # Do something awesome
67
+fi
68
69
# -O 43
70
argExists 'r' && echo "Found the -O argument"
71
```
0 commit comments