Skip to content

Instantly share code, notes, and snippets.

@vensder
Forked from pepoviola/key_to_json
Created October 13, 2017 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vensder/231eed297bf89c8aba84bf2affe60d49 to your computer and use it in GitHub Desktop.
Save vensder/231eed297bf89c8aba84bf2affe60d49 to your computer and use it in GitHub Desktop.
convert new lines into \n for use ssh key in json
sed ':a;N;$!ba;s/\n/\\n/g' my_key.pem
or in vi
:%s/\n/\\n/
https://tickets.opscode.com/browse/CHEF-3540
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment