mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
1a1784171d
- Add LICENSE - Add NO_ARCH PR: 201174 Submitted by: tkato432@yahoo.com Differential Revision:
14 lines
609 B
Plaintext
14 lines
609 B
Plaintext
Shell Flags (shFlags) is a library written to greatly simplify the
|
|
handling of command-line flags in Bourne based Unix shell scripts (bash,
|
|
dash, ksh, sh, zsh) on many Unix OSes (Linux, Solaris, Mac OS X, etc.).
|
|
|
|
Most shell scripts use getopt for flags processing, but the different
|
|
versions of getopt on various OSes make writing portable shell scripts
|
|
difficult. shFlags instead provides an API that doesn't change across
|
|
shell and OS versions so the script writer can be confident that the
|
|
script will work.
|
|
|
|
shFlags is a port of the google-gflags C++/Python library.
|
|
|
|
WWW: http://github.com/kward/shflags
|