-
-
Save prosenjit-manna/2e900cc255e7b63d7cf1b8dfcc0ba2e5 to your computer and use it in GitHub Desktop.
convert new lines into \n for use ssh key in json
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
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