Skip to content

Instantly share code, notes, and snippets.

View malcolm061990's full-sized avatar

Alex malcolm061990

View GitHub Profile
@pepoviola
pepoviola / key_to_json
Last active June 21, 2024 12:00
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