Created
December 16, 2019 15:38
-
-
Save nantsou/3aa30b501870a8e1218e19d772ceec24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# abc | |
# def | |
# ijk | |
# -> abc\ndef\nijk | |
# linux | |
sed ':a;N;$!ba;s/\n/\\\\n/g' file | |
# mac OSX | |
sed -e ':a' -e 'N' -e '$!ba' -e 's/\n/\\\\n/g' file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment