On this page you find all important commands for the CLI tool base64. If the
command you are looking for is missing please ask our AI.
base64
base64 - base64 encode/decode data and print to standard output
List of commands for base64:
-
base64:tldr:0ff63 base64: Decode a file.$ base64 --decode --input=${base64_file}try on your machineexplain this command
-
base64:tldr:1fd5e base64: Decode the base64 contents of a file and write the result to `stdout`.$ base64 --decode ${filename}try on your machineexplain this command
-
base64:tldr:61cd5 base64: Encode a file.$ base64 --input=${plain_file}try on your machineexplain this command
-
base64:tldr:643d8 base64: Encode the contents of a file as base64 and write the result to `stdout`.$ base64 ${filename}try on your machineexplain this command