Hi, all,
I have a simple script where I would like to use getopt long option, seems it can't work on ASUSwrt, do you have any idea?
Here is the simplified script:
#!/usr/sh
args=$(getopt -l us,ca,mx,misc -- "$@")
if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi
eval set -- "$args"...