rocky / kshdb

Korn Shell (93t 2008-10-22 or greater) Debugger

This URL has Read+Write access

kshdb / getopt-test.sh
100755 8 lines (7 sloc) 0.187 kb
1
2
3
4
5
6
7
8
# Test for a getopt that handles long options properly.
TEMP=$(getopt -o :h --long help,library: -n 'foo' -- "--help")
if [[ " --help --" == $TEMP ]] ; then
exit 0
else
exit 1
fi