When I run a perl program, I just redirect it the normal way
>perl myperlprogram.pl > c:/users/outputs/out.txt
But instead of having to write that path in the command line,
can I for example do:
STDOUT path = 'c:/users/outputs/out.txt';
or, if it was possible to just take the path writing in the command, and save it to a variable($)?
And the WHY I want this,
1: Not having to write the SDTOUT path every time I want to run it (After having closed the console)
2: I'm manipulating a lot of data and printing to STDOUT (out.txt), and I want to open it again in the same program, so I can read it again, and do new manipulations
I could push it all into an array, but then I risk running out of memory, so I just print to STDOUT.
(And I'm on Windows 10 (Unfortunately))
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.