shflags icon indicating copy to clipboard operation
shflags copied to clipboard

shFlags is a port of the Google gflags library for Unix shell.

Results 18 shflags issues
Sort by recently updated
recently updated
newest added

``` 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...

enhancement
auto-migrated
p3

``` 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...

enhancement
auto-migrated
p3

``` 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...

enhancement
auto-migrated
p2

``` 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...

p2
documentation

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...

enhancement

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...

enhancement

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...

documentation