I want to use some perl line, like this:
perl -pe "$_=~s///e"
The problem is, bash keeps expanding the “$_” variable. I could put the perl expression into single quotes, but that would prevent me from adding some variables into a script.
Is there a way stop bash from expanding “$_” variable?
or