http://www.perlmonks.org?node_id=910053


in reply to Re^3: Context tutorial
in thread Context tutorial

bash does support double quotes, but «\», «"» and «$» (and maybe more) are special in double quotes.

$ perl -E'my $x = qq{abc\\def}; say $x' abc\def $ perl -E"my \$x = qq{abc\\\\def}; say \$x" abc\def