| Bash triggers on this:
| case "/foo" in
|  [/\]* ) echo 1;;
| esac

| How are zsh and friends dealing with that?

The way it should :)

% case "/foo" in
case>  [/\]* ) echo 1;;
case> esac
zsh: bad pattern: [/]*

although the quotation of the guilty pattern gives a wrong idea of the
problem:

% case "/foo" in
 [/]* ) echo 1;; 
esac
1

        Akim

Reply via email to