Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: jobs -d &>/dev/null still produces output?
- X-seq: zsh-users 10926
- From: Michael Hernandez <sequethin@xxxxxxxxx>
- To: mjw@xxxxxxxxxx
- Subject: Re: jobs -d &>/dev/null still produces output?
- Date: Fri, 3 Nov 2006 14:02:35 -0500
- Cc: zsh-users@xxxxxxxxxx
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:in-reply-to:references:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=DlWkj6BE4joK8myA5JoYAwY8n9pUZZ+MO7WC9xhUbuHUnra4rtDpZpjZcEuseaSfUzyqtqqEyDz27UByvoeuyyojdBJvdBQqB0PJFaC3ozfY//Y34UhB7e0oX5x+Sl/D55Y0voLvpeDACb0cXA0hvN7d+51i4QYNFWYoSBFd31M=
- In-reply-to: <17393e3e0611031048j2c28e9b4w996c1690926d7b95@xxxxxxxxxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <17393e3e0611031048j2c28e9b4w996c1690926d7b95@xxxxxxxxxxxxxx>
On Nov 3, 2006, at 1:48 PM, Matt Wozniski wrote:
I'm a bit confused by something zsh is doing.
Test case:
sleep 1000 &
jobs -d &>/dev/null
Why does this still produce output? Is there any way to redirect the
line that's still appearing on screen? And what on earth is the
'shout' file descriptor tied to? :)
Thanks!
~Matt
Could be that jobs is using STERR not just STDOUT
Try redirecting STDERR, for example
lskdjf 2&>/dev/null
Produces no output (it should say "command not found" or something
similar)
--
Mike
Messages sorted by:
Reverse Date,
Date,
Thread,
Author