zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: Zsh Users <zsh-users@sunsite.dk>
Subject: Re: Silent shell but not silent script
Date: Fri, 02 Sep 2005 15:34:14 +0000	[thread overview]
Message-ID: <1050902153414.ZM22483@candle.brasslantern.com> (raw)
In-Reply-To: <20050902110911.GA158@DervishD>

On Sep 2,  1:09pm, DervishD wrote:
}
}     Sometimes the command I have to run won't exist, so zsh will
} issue that error. How the heck can I make zsh not to spill the error
} message but at the same time let the command to use stderr and
} stdout?

As far as I can tell, it's impossible.

Redirections are done *before* the command execution is attempted,
which is why this ...

}     $ ./command 2> /dev/null

... succeeds in suppressing the error message.  But that also means
that this ...

}     $ { ./command 2>&1 } 2> /dev/null

... does *not* succeed in suppressing the error, it only succeeds in
sending the error to stdout.

}     The only solution I've found so far is to pipe stderr thru a sed
} script and get rid of any shell message

I'd have suggested 'grep -v "^zsh:"', or egrep with a more specific
set of messages to suppress.


  parent reply	other threads:[~2005-09-02 15:34 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-09-02 11:09 DervishD
2005-09-02 11:30 ` Mike Hernandez
2005-09-02 14:22   ` DervishD
2005-09-02 15:34 ` Bart Schaefer [this message]
2005-09-02 16:03   ` DervishD

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1050902153414.ZM22483@candle.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).