I'm trying to run a sh script and get the following error on Mac:
sh
/usr/bin/perl^M: bad interpreter: No such file or directory
How can I fix this?
Remove ^M control chars with
^M
perl -i -pe 'y| ||d' script.pl
2.1m questions
2.1m answers
60 comments
57.0k users