In the last episode of the mysql list (May 26), Michael Widenius said:
> >> Fix:
> long> Change the problem line from:
>
> long> if ! test $# -gt 0; then usage; fi
>
> long> to:
>
> long> if test $# -le 0; then usage; fi
>
> I have now fixed this for the upcoming 3.23.39. Thanks!
The more general fix is to move the '!' after the 'test' command. '!'
is not a shell command; it's a test operator.
if test ! $# -gt 0; then usage; fi
--
Dan Nelson
[EMAIL PROTECTED]
---------------------------------------------------------------------
Before posting, please check:
http://www.mysql.com/manual.php (the manual)
http://lists.mysql.com/ (the list archive)
To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php