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 770fc9e commit 617c50cCopy full SHA for 617c50c
README.md
@@ -33,4 +33,13 @@ newlines"
33
```bash
34
-aih # Equivalent to -a -i -h
35
-dav 4 # Equivalent to -d -a -v 4
36
-```
+```
37
+
38
+## Argument Order
39
40
+The order the arguments are passed on the command line makes a difference
41
42
+### Examples
43
44
+* Calling `my-script.sh -f first -f last` will cause `${args["f"]}` to have the value `last`
45
+* Calling `my-script.sh -g 345 -g` will mean cause `${args["g"]}` to be blank
0 commit comments