I have a script called ask_input.pl which basically asked for an input. Below is the script.
#!/usr/bin/perl
use strict;
print "Enter your answer?\n"; # Line 3
<>; # Line 4
print "Done.\n";
So, when I call this script from the command line, it should ask for the input.
Now, when I call this script from another script or is run through the cron, it should bypass the lines where it asks for the inputs specifically lines 3 and 4. I was thinking of using GetOpt::Long to add an argument in the ask_input.pl script, and if that particular argument exists then it will just bypass lines 3 and 4.
Is this the efficient way to do this? What are the other ways of doing this? I read somewhere but could not recall that a Perl module can be run as both as a module and as a stand-alone script. I'm not sure if I can use this in this situation though.
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.