Zhu Sha Zang writes: > Hi there, why this command don't work in zsh: [...] > [r...@sakurazukamori /usr/src/linux]$ emerge --config > =sys-apps/tomoyo-tools-2.2.0_p20090727 > 9:44 > zsh: sys-apps/tomoyo-tools-2.2.0_p20090727 not found
Interesting. Looks like zsh treats a '=' character specially. I don't use zsh, so I don't know why this is. Seems like it does something similar to the bash builtin 'type': weird% echo =find /usr/bin/find Your command works, when the = is escaped by a \, or when the stuff is quoted. Wonko