in reply to escaping output

You should look in perldoc perlop in the "quotes and quote-like operators" section... but the short explanation is: For example: $x = "oo"; "f$x" (or just "foo") would yield the same result as 'foo', which would also yield the same result as `echo foo` (well... except that echo would probably put a newline on the end, so it would be like "foo\n"... but whatever).
------------ :Wq Not an editor command: Wq