Just a guess, but there may be a misunderstanding in the reuse
of *diary.
@diary = 'path/to/diary.txt';
open(DIARY,">>@diary") or die "can't open file: $!";
(its a good idea to do 'or die "can't open @diary: $!"' well
not '@diary' but the var holding the file name in the die
stmt, as in 'or die "can't open diary file $file: $!"')
is odd and just sort of lucky. You're mixing the Array @diary
in a scalar context, er, I think that'll just make
$diary[$[] eq "/path/to/diary.txt";
fortunately, putting the @diary in a quote context
unrolls it as if join("", @diary) which gives you back
"/path/to/dairy.txt"
a
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.