Skip to content

Instantly share code, notes, and snippets.

@nantsou
Created December 16, 2019 15:38
Show Gist options
  • Save nantsou/3aa30b501870a8e1218e19d772ceec24 to your computer and use it in GitHub Desktop.
Save nantsou/3aa30b501870a8e1218e19d772ceec24 to your computer and use it in GitHub Desktop.
# 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