arg/README.md

41 lines
1.6 KiB
Markdown
Raw Normal View History

2019-02-14 19:40:34 -08:00
# arg - A simple command line argument parser
This is a simple tool with a simple job: figure out the value of a single
command line argument. Tools like `getopt` and `getopts` are unnecessarily
complex and difficult to use, while also not supporting common use cases well.
Parsing an argument in a shell script shouldn't require a tutorial or dozen
lines of shell code!
To quote the `getopt` manpage:
> Each shellscript has to carry complex code to parse arguments halfway
> correcty (like the example presented here). A better getopt-like tool would
> move much of the complexity into the tool and keep the client shell scripts
> simpler.
## Usage
Simply run: `arg <flag> <extra args...>`. `<flag>` can be anything, like `-f`,
`-flag`, `--flag`, or `flag`. If the flag occurs among the rest of the
command line arguments, `arg` will print the flag's value (if any) and exit
successfully, otherwise, it will fail (exit status 1). In a shell script, this
would look like:
2019-02-14 19:40:34 -08:00
```
#!/bin/sh
dir=`arg --dir "$@" || arg -d "$@" || echo "$HOME/Downloads"`
if ! server=`arg --server "$@" || arg -s "$@"`; then
echo "No server provided :(" && exit 1
fi
2019-02-14 19:41:32 -08:00
if arg --verbose "$@" || arg -v "$@"; then
2019-02-14 19:40:34 -08:00
echo "Downloading to $dir"
fi
curl "$server/file.zip" > "$dir/file.zip"
2019-02-14 19:40:34 -08:00
```
The flag's value may be of the form `<flag>=<value>` or `<flag> <value>`.
Single-letter flags will also match when grouped with other single letter
flags, but will not have a value (e.g. `arg -b -abc foo` will succeed without
printing anything).
2019-02-14 19:43:39 -08:00
When using `arg` in a shell script, it is best to use quotes around `$@`, as in
`arg --foo "$@"`, so arguments with spaces will be forwarded correctly.