Skip to content

Instantly share code, notes, and snippets.

@byteshiva
Last active March 8, 2016 11:03
Show Gist options
  • Save byteshiva/6984de10d6bccc2d3dcf to your computer and use it in GitHub Desktop.
Save byteshiva/6984de10d6bccc2d3dcf to your computer and use it in GitHub Desktop.
ConvertFiletoStringWithNewLineSpace
awk -v ORS=" " 'BEGIN {print "\""} {printf $0 "\\n"} END {print "\""}' filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment