in reply to Re: Command Line Arg contains Variable and more
in thread Command Line Arg contains Variable and more
tosystem $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.print `$cmd`;
|
|---|