Merge pull request #363 from shigemk2/shigemk2-patch-1

Add cheatsheet perl
This commit is contained in:
Chris Allen Lane 2017-12-19 12:38:25 -05:00 committed by GitHub
commit d09353bfca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

8
cheat/cheatsheets/perl Normal file
View File

@ -0,0 +1,8 @@
# To view the perl version:
perl -v
# Replace string "\n" to newline
echo -e "foo\nbar\nbaz" | perl -pe 's/\n/\\n/g;'
# Replace newline with multiple line to space
cat test.txt | perl -0pe "s/test1\ntest2/test1 test2/m"