Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
zsh weird behaviour (possibly bug?)
- X-seq: zsh-workers 23630
- From: "Janos Barbero" <jbarbero@xxxxxxxxx>
- To: zsh-workers@xxxxxxxxxx
- Subject: zsh weird behaviour (possibly bug?)
- Date: Sun, 1 Jul 2007 20:32:18 -0700
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=k3+HqKUjqjHkb/qM9F7elaDk0mvoxWu/scmKdWlgiIVO3HIUeg7H7mbzGezkOcm8tmYfMKyxnZR9egohI4CosdRPvPGt0MYxWiUf7L5TygTfPvPqDN8gFXZpKwFq4aN6lftHKfemnzF9qTdbMGskFerQ7gMvY72DVUGMjnoX4oU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=A9ot5pdvP3Nm+aZjRnnmcxvcJwNw+PupAIfhgtr8ooIguHQCMnIw1tOd8GAW8+BHM7jj6MtdYxDyrO3WvCeoXrfAGhz6ZKHLtqmxuORBxMcvL1Gt3zC7GLC/0bHZoe7HV2D4UEBh2VdVzFXHYHWuvM3QAA2vEnDgFCh12u7hJOA=
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
Hi,
I often notice that complex shell commands (usually with 5-10 pipes
and plenty of awk/sed) produce no output in zsh, but work fine in
bash. I found a really simple one today.
ls | sed 's/\<\(.\)\([^ ]*\)/\u\1\L\2/g'
This produces no output in zsh, but does in any bash version. Further
investigation revealed this to be due to my precmd's/postcmd's. So
some more data:
1: precmd () { print -Pn "\ek%n@%m %~$ \e\\" }
2: preexec() { print -Pn "\ek%n@%m %~$ $1\e\\" }
3: precmd () { print -Pn "\ek%~\e\\" }
4: preexec() { print -Pn "\ek%~ $1\e\\" }
If I have only line 4, command doesn't return (I have to manually kill
the window), but plain ls works. If I leave lines 3 and 4, no output.
Leaving either or both lines 1 and 2, it works fine. (I tried these
with nothing else in my .zshrc.)
Is the problem with my precmd/postcmd 3 and 4, or is this a zsh bug?
Sorry if this is sent out to the wrong list, I understood this is
where to file zsh bugs.
Thanks,
~Janos
Messages sorted by:
Reverse Date,
Date,
Thread,
Author