in reply to Re: Regular Expressionsin thread Regular Expressions
However, the double-quotes will convert the '\\' to a '\', since '\' is a meta-character. You might try using single quotes instead:
$ cat foo print '\\'; $ perl -l foo \ [download]