A simple shell wrapper that handles argument parsing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update README.md

Fly d14980f0 b82b5a86

+5 -1
+5 -1
README.md
··· 2 2 3 3 This is a simple shell wrapper for scripts that handles argument parsing, because argument parsing in bash is a pain in the ass. 4 4 5 + ## Installation 6 + 7 + Build with `cargo build --release` and copy the resulting binary to somewhere in your path. 8 + 5 9 ## Usage 6 10 7 11 Put argsh in the shebang, instead of your shell as such: 8 12 9 13 ```bash 10 - #!/bin/env argsh <arguments> 14 + #!/bin/env -S argsh <arguments> 11 15 ``` 12 16 13 17 And you define the arguments as a semicolon separated list of arguments.