Dear monks,
I have a small perl script, myscript.pl called by a c program via the system command with command line arguments, as follows:
myscript.pl set <variable_name> <variable_value>
The code of myscript.pl is very basic, as follows:
#!/usr/bin/perl
use warnings;
use strict;
my ($command, $pathname, $value);
$command = shift @ARGV;
$pathname = shift @ARGV;
if (defined $pathname and $pathname ne '') {
if (($command eq "set") or ($command eq "add") or ($command eq
+"del"))
{
$value = shift @ARGV;
}
else .....
}
...
I found that if <variable_value> is a string starting with a hash (#), then $value remains undefined. If I enclose the string in "", then $value is properly defined. However, I do not have (easy) access to the c program that calls myscript.pl.
Is there another way to solve this?
Cheers,
Athanasia
Update : Thanks to all who responded to my query. All suggested solutions helped me address the issue in one way or another.
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.