in reply to Re: Command Line Arg contains Variable and more
in thread Command Line Arg contains Variable and more

Changing
system $cmd;
to
print `$cmd`;
is never a good idea. All it does is introduce memory overhead and lag. It definitely doesn't help the OP interpolate a Perl variable into a shell command.