Created
June 12, 2025 19:05
The following command is used to base64 encode a string on macOS without a trailing newline that vim has as a "feature."
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
echo -n "<YOUR-CONTENT-TO-ENCODE>" | base64 -b 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment