I am using windows batch to check if Perl is installed on my machine and if it is not installed i install it using command line. This is my code:
FOR /F "tokens=*" %%A IN ('perl -v ^| FIND "This is perl 5, version 12
+, subversion 4 (v5.12.4) built for MSWin32-x86-multi-thread"') DO SET
+ Variable=%%A
IF "%Variable%"=="This is perl 5, version 12, subversion 4 (v5.12.4) b
+uilt for MSWin32-x86-multi-thread" (
ECHO Perl 5.12.4
ECHO.
) ELSE (
call msiexec /i win_packages\01_ActivePerl-5.12.4.1205-MSWin32-x86
+-294981.msi /q /l*v logs.txt >> Logs 2>&1
IF %errorlevel% GTR 0 (
echo 01 - Failed to Install 'ActivePerl-5.12.4.1205-MSWin32-x8
+6-294981.msi'. Got Error %errorlevel%.
GOTO END
)
)
Now the problem is if perl is not installed perl -v throws error which is displayed on output screen which I dont want. Can some one help me routing the output to > nul here.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.