Created
April 25, 2021 01:11
-
-
Save cmd-not-found/e8ffdfa56ed1f246faaf6f29f690bfb8 to your computer and use it in GitHub Desktop.
Unifi SSL Certificate Cleanup
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
| for cert in *.crt; do | |
| mv $cert $cert.bak | |
| cat $cert.bak | tr -d '\r\n' > $cert | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment