$a is a bad choice of variable names (as would
$b), since it is a magic variable used in custom sorts, however I very much doubt if that is an issue here.
The rediection should work, and the creation of the file shows that the shell (probably cmd.exe) is creating the output file. A few things spring to mind that can create issues with cmd.exe:
Does the command-line (including
$a) contain any quotes (other than the outer " used for Perl interpolation)?
Does the parameter in
$a contain any imbedded whitespace?
You might like to replace the
./TVT.exe with
echo to eliminate these issues. If that gets redirected correctly then you might need to look at the program. For example, is it writing to STDERR?
Update: I have done some experimenting, and cmd.exe does not seem particularly happy with the
./ prefix to the exe. I know you say it worked previously, but try removing it (it is not needed in Windows because the current directory is searched, whether it is in the %path% or not).
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.