Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: variable assignment error

by Crackers2 (Parson)
on Sep 04, 2010 at 01:01 UTC ( [id://858827]=note: print w/replies, xml ) Need Help??


in reply to variable assignment error

This looks to me like you're trying to execute $gmetric with the given parameters. I know in bash you can do

CMD=/bin/tr PARM1=a-z PARM2=A-Z $CMD $PARM1 $PARM2

and have it execute /bin/tr a-z A-Z, but that doesn't work in perl. You'd have to do something like

system("$gmetric $gmetric_conf --name=VVname --value=$pVVname --type= +uint32 --units=name"); system("$gmetriC $gmetric_conf --name=t --value=$t --type=uint32 --un +its=t"); system("$gmetric $gmetric_conf --name='I/O per second Cur' --value=$i +oCur --type=uint32 --units=ioCur");

Normally I'd be inclined to use the multi-arg version of system, but that wouldn't work here since $gmetric_conf contains more than one parameter.

Replies are listed 'Best First'.
Re^2: variable assignment error
by choroba (Cardinal) on Sep 06, 2010 at 15:19 UTC
    Normally I'd be inclined to use the multi-arg version of system, but that wouldn't work here since $gmetric_conf contains more than one parameter.

    Then, it should be turned into @gmetric_conf

    ;)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://858827]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (7)
As of 2024-04-19 10:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found