On Wed, Apr 19, 2000 at 04:21:30PM -0600, SoloCDM wrote:
> Can the following bash script "if" statement be shortened/condensed?
> 
>      if [ "$MANS" = "y" ] || [ "$MANS" = "Y" ]

if [ "$MANS" = y -o "$MANS" = Y ]

man test for the syntax for the comparison functions.

me


-- 
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.

Reply via email to