getopt
Parse command-line arguments. More information: <https://www.gnu.org/software/libc/manual/html_node/Getopt.html>.
Install
- All systems
-
curl cmd.cat/getopt.sh
- Debian
-
apt-get install util-linux
- Ubuntu
-
apt-get install util-linux
- Alpine
-
apk add util-linux
- Arch Linux
-
pacman -S util-linux
- Kali Linux
-
apt-get install util-linux
- CentOS
-
yum install util-linux
- Fedora
-
dnf install util-linux
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install util-linux
- OS X
-
brew install util-linux
- Raspbian
-
apt-get install util-linux
- Dockerfile
- dockerfile.run/getopt
- Docker
-
docker run cmd.cat/getopt getopt
powered by Commando
Parse command-line arguments. More information: <https://www.gnu.org/software/libc/manual/html_node/Getopt.html>.
-
Parse optional `verbose`/`version` flags with shorthands:
getopt --options vV --longoptions verbose,version -- --version --verbose
-
Add a `--file` option with a required argument with shorthand `-f`:
getopt --options f: --longoptions file: -- --file=somefile
-
Add a `--verbose` option with an optional argument with shorthand `-v`, and pass a non-option parameter `arg`:
getopt --options v:: --longoptions verbose:: -- --verbose arg
-
Accept a `-r` and `--verbose` flag, a `--accept` option with an optional argument and add a `--target` with a required argument option with shorthands:
getopt --options rv::s::t: --longoptions verbose,source::,target: -- -v --target target
© tl;dr; authors and contributors