Bash long options/flags - how to do it?
问题 I am trying to change my working script with getopts to getopt ( long flags ). Below i present my code which is working. getopts 'm:' mode modeValue=$OPTARG getopts 'p:' parameter parameterValue=$OPTARG getopts 'u:' parameter parameterValue2=$OPTARG getopts 'l:' parameter parameterValue3=$OPTARG getopts 'n:' parameter parameterValue4=$OPTARG getopts 'e:' parameter parameterValue5=$OPTARG getopts 'w:' parameter parameterValue6=$OPTARG getopts 'r:' parameter parameterValue7=$OPTARG case