Why does it always seem that I always have to come back and
correct my stupid mistakes because they're never what I
thought was the problem?
As it turns out, the problem is not with
$ENV{PATH} = $ENV{PATH} . ":/usr/local/openssl/bin";
after all. When followed by system("printenv");,
/usr/local/openssl/bin is in there at the end, and if followed
by system("openssl");, it runs openssl.
So what the heck happens with my code? which is
a shell built-in function, so it totally ignores the
$ENV{PATH} in perl, and re-reads (or otherwise pulls out
of its ass) my .cshrc, which doesn't have the "right" PATH.
So, now I'm writing my own which (in perl), to get around
this issue.
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.