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 7f0dc09 commit 770fc9eCopy full SHA for 770fc9e
README.md
@@ -1 +1,36 @@
1
-# BASH Argument Parser
+# BASH Argument Parser
2
+
3
+Takes arguments passed in nearly any format to a bash script and allows easy access to them and their values
4
5
+## Supported Argument Formats
6
7
+### Short Form
8
9
+```bash
10
+ -a
11
+ -X
12
+ -b somevalue
13
+ -c 38
14
+ -d "some value with spaces"
15
+ -e "some value with
16
+newlines"
17
+```
18
19
+### Long Form
20
21
22
+ --debug
23
+ --test mode0
24
+ --test "all the code"
25
+ --Case-Sensitive true
26
+ --long-parameter
27
+ --newline "
28
+"
29
30
31
+### Chained Short Form Arguments
32
33
34
+ -aih # Equivalent to -a -i -h
35
+ -dav 4 # Equivalent to -d -a -v 4
36
0 commit comments