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 f58ea9e commit 4e8c698Copy full SHA for 4e8c698
README.md
@@ -6,12 +6,16 @@ Takes arguments passed in nearly any format to a bash script and allows easy acc
6
7
### How To Use
8
9
-Just include the library in the head of script and call the parser function
+Just include the library in the head of script, define all the arguments you need and call the parser function
10
11
```bash
12
# Include the Argument Parser library
13
source ./my/lib/path/argument-parser.sh
14
15
+# Define the expected arguments
16
+argExpected['test']="argName - This is a short description of the argument and what it does"
17
+argExpected['R']="secondArgName - This is another argument that can be passed"
18
+
19
# Parse any arguments
20
argParse
21
```
0 commit comments