import{_ as a,o as e,c as s,d as n}from"./app.5024572d.js";const t={},i=n(`
\u63D0\u793A
base64 \u7F16\u7801\u8F6C\u6362\uFF0C\u548C linux \u91CC\u7684 base64 \u547D\u4EE4\u7C7B\u4F3C\u3002
[arthas@70070]$ echo 'abc' > /tmp/test.txt
[arthas@70070]$ cat /tmp/test.txt
abc
[arthas@70070]$ base64 /tmp/test.txt
YWJjCg==
$ base64 --input /tmp/test.txt --output /tmp/result.txt
$ base64 -d /tmp/result.txt
abc
$ base64 -d /tmp/result.txt --output /tmp/bbb.txt