From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 27937 invoked by alias); 30 Apr 2013 21:16:15 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 17798 Received: (qmail 1768 invoked from network); 30 Apr 2013 21:16:10 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,HTML_MESSAGE,RCVD_IN_DNSWL_LOW, T_TO_NO_BRKTS_FREEMAIL autolearn=ham version=3.3.2 Received-SPF: pass (ns1.primenet.com.au: SPF record at _netblocks.google.com designates 209.85.215.171 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:mime-version:from:date:message-id:subject:to :content-type; bh=RyV5jFxECKO2+4fv8iuvQvdw4jOoyHowZ5G2OA32rTg=; b=Rvt8wKFcgtFLsugoniRd3bnIdXWXhIIkp8/GTGAzAaeIrTcPy+bIOsy2xdYm3ihMjj 3hZocGnRmEu1itOUc+xcV3hP4xxchn5uWs0cbGlpKhf3Cdk+mWoTP8rBNOyvZwU/ytHt becRYhc4xq/lVL95yhLWobEqNTK1xLBSzMDCejd0ye9eAvCxzpuFaQWlUmxOIMdRKOPP zFFuxr2NsQi1sY7eC43PgJlGXtRc0fTQW0GqbVawMUiJXrVDEUomA05yxGlqPzKcLAmo ll+b5d90XO/odsSAPUvKycEXsnx+uDx/O0Z1hR9fxCWmCpO8y6BYE6vusjXlI2ZHgtaF lOtA== X-Received: by 10.14.194.70 with SMTP id l46mr83483een.28.1367356078173; Tue, 30 Apr 2013 14:07:58 -0700 (PDT) MIME-Version: 1.0 From: James Jong Date: Tue, 30 Apr 2013 17:07:38 -0400 Message-ID: Subject: zsh echoing every statement To: zsh-users@zsh.org Content-Type: multipart/alternative; boundary=047d7b343e3452528b04db9a6561 --047d7b343e3452528b04db9a6561 Content-Type: text/plain; charset=ISO-8859-1 I have an odd problem with zsh when switching between shells: Option 1: --------------- I start a Zsh shell, I then switch to tcsh with /bin/tcsh and I then switch back to zsh with /bin/zsh everything works well, e.g. $ls ./ ../ file1 file1 file3 But, if I do: Option 2: --------------- I start a Zsh shell, I switch to tcsh with: exec env -i HOME=/home/james TERM=xterm-256color DISPLAY=localhost:12.0 /bin/tcsh and then back to zsh with /bin/zsh, then when I enter my subsequent commands, the shell echoes the command and then the result, e.g. $ ls 2;ls --color=yes -aF1;ls./ ../ file1 file2 file3 In other words, zsh shows 2;COMMAND 1; and then the output without line breaks, which is of course very different from what I was getting with Option 1. What can I do to diagnose the problem? Any pointers would be greatly appreciated Thanks, James --047d7b343e3452528b04db9a6561--