mirror of https://github.com/cheat/cheat.git
Add cheatsheet perl
This commit is contained in:
parent
cdf573a725
commit
0b0bc441c6
|
@ -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"
|
Loading…
Reference in New Issue