Created
May 31, 2019 10:23
-
-
Save anthager/ac5e5f947416e01b6c69cf64f2e531f0 to your computer and use it in GitHub Desktop.
replace "hidden line breaks in a .pem file with \n"
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
| awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' ca.pem |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://serverfault.com/a/943294