Is it possible to have multiple commands preceeding an unless test? I prefer to use the format
[do something] unless ([some case]);
when I am able to, but this time around, I need the
[do something] to be multiple statements instead of just one. Is something like this possible:
(print "Program Error!" && exit(0)) unless ([case is true]);
I thought using the double &'s would allow multiple statements to be executed one after the other, but the above code prints nothing.
While I'm at it, I have a short script that replaces a specific line in a file. Is there a better way to do this than what I'll pseudo code below?
# open the file - read
# swap the update_info=blah line to update_info=auto
my @lines = map {s/^update_info=(?:\w+)/update_info=auto/; $_ } <FILE>
+;
# close file
# open the file - write
foreach (@lines) { print TOFILE; }
# close file
Thanks.
Title edit by tye
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.