Remove Control ^M from files
tpatil created the topic: Remove Control ^M from files Single file method perl -pi -e “s/\r//” filename.txt Multiple File Method find . -type f -exec perl -pi -e “s/\r//” {} \; rajeshkumar replied the topic: Re:Remove Control ^M from files I used to do in shell using following command > 1,$s/^M//g Correct me if I … Read more