shflags
shflags copied to clipboard
shFlags is a port of the Google gflags library for Unix shell.
``` I love this tool and am using it enthusiastically. however, i am having a problem in that I have a lot of flags with long names and they don't...
``` There are times where a user might want to define a flag for internal use, but not provide it in the help output. ``` Original issue reported on code.google.com...
``` for debugging output it would be helpful to have the method iterating all the flags and showing the value set for the current call provided with shflags. It could...
``` it would be nice to include to wiki the way to print the help for example for the no flags/arguments present. The way it worked for me on the...
Will it be possible to support something like such in Bash `getopts`? ``` bash #! /bin/bash while getopts ":t:" opt; do case $opt in t) TAGS+=($OPTARG) ;; esac done shift...
Have the ability to have a no-negate flag. Sometimes a negate option is not necessary . By adding an exclamation mark to the name the flag will not have a...
Sometimes, we may pass some undefined params to shell script, is there a way(such as a flag) to ignore the undefined params, and the script will run success? Now the...