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 ea6ab4b commit 34a903bCopy full SHA for 34a903b
README.md
@@ -13,7 +13,7 @@ If the argument doesn't have a value or hasn't been passed nothing is returned.
13
14
```bash
15
16
- # -a "some text"
+ # -a 'some text'
17
if [ "$(argValue "a")" == 'some text' ]; then
18
# Do something awesome
19
fi
@@ -27,6 +27,10 @@ If the argument doesn't have a value or hasn't been passed nothing is returned.
27
# -aXb 'cookie'
28
BISCUIT="$(argValue "b")" # 'cookie'
29
30
+ # -g 'hello' -G 'world'
31
+ ALPHA="$(argValue "g")" # 'hello'
32
+ BRAVO="$(argValue "G")" # 'world'
33
+
34
```
35
36
### Check If An Argument Has Been Passed
0 commit comments