Skip to content

Instantly share code, notes, and snippets.

@ctokheim
Created January 30, 2015 19:31
Show Gist options
  • Save ctokheim/e909c959a0606fbdf42a to your computer and use it in GitHub Desktop.
Save ctokheim/e909c959a0606fbdf42a to your computer and use it in GitHub Desktop.
Perl tricks
# remove \r from file
cat myfile.txt | perl -p -e 's/\r//g' > output.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment