in reply to Re: Re: $ variables in command linein thread $ variables in command line
$test = "hello"; $s = "(hello)"; $r = '"$1 world"'; $test =~ s/$s/eval $r/e; print $test; [download]