Hi, (I am sure this has been solved a billion times, but I am interested in learning by doing ;-)
For example, if I create a sendmail.exe program that I want to drive from Perl (Win32 now, Linux future). I know I can pass parameters on the command line. This isn't a problem for small things...but the line length, at some point, isn't going to be big enough...
I also see programs like "sort.exe" (Win32) I assume they read from STDIN and the when STDIN is closed? they process all words and spit out a sorted list...right? (Seems like they can effectively read any buffer length...) These types of commands don't allow this: "sort.exe /?"
I have looked at pipe, but it seems like it is going to call fork(), which I am avoiding on Win32...
Is it normal to provide 2 sendmail programs? One that you use from the command line: sendmail -s=subj -b=msg_body
And then one that reads from STDIN? (for the msg_body) ?
Is this the right way to send long messages to a simple external program? (ie no IP communication)
Thanks (hope this makes sense ;-)
Edit kudra,
2002-05-11
Changed title per ntc
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.