mirror of
https://github.com/Hizenberg469/environment-setup.git
synced 2026-04-20 05:22:23 +03:00
9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
echo "All arguments: $@"
|
|
opts=$(getopt -o a --long help,dir::,mode: -- "$@")
|
|
eval set -- "$opts"
|
|
echo "All arguments after getopt: $@"
|
|
|