NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Funny redirecting? (Score:1)
Uh... wouldn't "2>&1 >/dev/null" just put what's going to stderr to stdout and what's going to stdout to nothing, as opposed to both stderr and stdout to nothing?
I think you need "2>/dev/null" for what you want.
The new Strawberry Perl for Windows has been released! Check http://strawberryperl.com for it.
Reply to This
Re: (Score:2)
Yes.
No. :-)
I'm relying on the order of parsing of pipes and redirection.
git fetch -q 2>&1 >/dev/null </dev/null | catis parsed as run this:piped to that:
Then,
git fetch -q 2>&1 >/dev/null </dev/nullisRe: (Score:1)
The new Strawberry Perl for Windows has been released! Check http://strawberryperl.com for it.