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


in reply to Re: Move a file to another directory based on regex match
in thread Move a file to another directory based on regex match

I don't know what \+ means?

That renders the regex metacharacter + to a literal "+" character to be matched in the string, as in ...

# https://www.youtube.com/watch?v=iqu132vTl5Y perl -e 'q[x+v] =~ m{\+} and print q[I saw the sign]'