Skip to content

Instantly share code, notes, and snippets.

View brentmcconnell's full-sized avatar

Brent McConnell brentmcconnell

  • Microsoft
  • Boston, MA
View GitHub Profile
@brentmcconnell
brentmcconnell / longopts2getopts.sh
Created October 25, 2019 18:47 — forked from adamhotep/longopts2getopts.sh
POSIX shell: support long options by converting them to short options
# a refinement of https://stackoverflow.com/a/5255468/519360
# see also my non-translating version at https://stackoverflow.com/a/28466267/519360
# translate long options to short
reset=true
for arg in "$@"
do
if [ -n "$reset" ]; then
unset reset
set -- # this resets the "$@" array so we can rebuild it