From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Story To: cygwin@sourceware.cygnus.com Subject: B20.1: bash getopts? Date: Tue, 31 Aug 1999 23:49:00 -0000 Message-ID: X-SW-Source: 1999-08n/msg00030.html Message-ID: <19990831234900.tSy5gokliz_ZNJqvoF2ARhhc3tI8my1bSrO11fqLqB8@z> Environment: Cygwin 20.1 beta, WinNT 4.0 build 1381 sp 4 I'm trying to run a bash script which uses getopts under cygwin. The script works on my linux box, but reports 'getopts not found' under cygwin. The bash help list getopts as a valid built-in command. The script in question can be reduced to : #/bin/bash # while getopts ab flag do case "$flag" in a) echo "Flag a";; b) echo "Flag b";; ?) echo "Flag unknown";; esac done I could not find any scripts in the bin directory that use getopts. Should it work? Or is the help incorrect? -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe@sourceware.cygnus.com