base64

base64编码转换,和linux里的 base64 命令类似。

对文件进行 base64 编码

  1. [arthas@70070]$ echo 'abc' > /tmp/test.txt
  2. [arthas@70070]$ cat /tmp/test.txt
  3. abc
  4. [arthas@70070]$ base64 /tmp/test.txt
  5. YWJjCg==

对文件进行 base64 编码并把结果保存到文件里

  1. $ base64 --input /tmp/test.txt --output /tmp/result.txt

用 base64 解码文件

  1. $ base64 -d /tmp/result.txt
  2. abc

用 base64 解码文件并保存结果到文件里

  1. $ base64 -d /tmp/result.txt --output /tmp/bbb.txt