Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Dont Display STDER on Console

by BrowserUk (Patriarch)
on Oct 05, 2012 at 10:59 UTC ( [id://997440]=note: print w/replies, xml ) Need Help??


in reply to Dont Display STDER on Console

The perl link is tenuous at best, but ...

C:\test>prel -v 2>nul | find "perl" C:\test>perl -v 2>nul | find "perl" This is perl, v5.10.1 built for MSWin32-x64-multi-thread (with 2 registered patches, see perl -V for more detail) this system using "man perl" or "perldoc perl". If you have access to + the Internet, point your browser at http://www.perl.org/, the Perl Home Pa +ge.

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

RIP Neil Armstrong

Replies are listed 'Best First'.
Re^2: Dont Display STDER on Console
by anshumangoyal (Scribe) on Oct 05, 2012 at 11:07 UTC
    It gives me this error: 2> was unexpected at this time. This was my code:
    FOR /F "tokens=*" %%A IN ('perl -v 2>nul ^| FIND "This is perl 5, vers +ion 12, subversion 4 (v5.12.4) built for MSWin32-x86-multi-thread"') +DO SET Variable=%%A
      It gives me this error: 2> was unexpected at this time.

      Escape the '>' in the same way that you escaped the '|'.

      C:\test>for /f "tokens=*" %a in ('prel -v 2^>nul ^| find "perl"') do @ +echo %a C:\test>for /f "tokens=*" %a in ('perl -v 2^>nul ^| find "perl"') do @ +echo %a This is perl, v5.10.1 built for MSWin32-x64-multi-thread (with 2 registered patches, see perl -V for more detail) this system using "man perl" or "perldoc perl". If you have access to + the Internet, point your browser at http://www.perl.org/, the Perl Home Pa +ge.

      With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
      Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
      "Science is about questioning the status quo. Questioning authority".
      In the absence of evidence, opinion is indistinguishable from prejudice.

      RIP Neil Armstrong

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://997440]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (5)
As of 2024-04-20 00:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found