Created
March 6, 2024 11:47
-
-
Save abdurrahmanekr/624c5474f80db2f81b00f39261d2f402 to your computer and use it in GitHub Desktop.
Usefull commandline base64 decode encode scripts
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
alias base64="node -e \"console.log(Buffer.from(process.argv[1], 'utf8').toString('base64'))\"" | |
alias base64decode="node -e \"console.log(Buffer.from(process.argv[1], 'base64').toString('utf8'))\"" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment