
base64
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:56bcc base64: Encode from `stdin`.$ echo -n "${plain_text}" | base64try 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
-
base64:tldr:a1d3a base64: Encode from `stdin`.$ ${somecommand} | base64try on your machineexplain this command
-
base64:tldr:cb892 base64: Decode from `stdin`.$ echo -n ${base64_text} | base64 --decodetry on your machineexplain this command
-
base64:tldr:e841b base64: Decode from `stdin`.$ ${somecommand} | base64 --decodetry on your machineexplain this command