import{_ as e,o as a,c as s,d as n}from"./app.391b0e4e.js";const t={},d=n(`

base64

TIP

Encode and decode using Base64 representation.

Encode to base64

[arthas@70070]$ echo 'abc' > /tmp/test.txt
[arthas@70070]$ cat /tmp/test.txt
abc

[arthas@70070]$ base64 /tmp/test.txt
YWJjCg==

Encode to base64 and save output to file

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

Decode from base64

$ base64 -d /tmp/result.txt
abc

Decode from base64 and save output to file

$ base64 -d /tmp/result.txt --output /tmp/bbb.txt
`,10),i=[d];function c(o,r){return a(),s("div",null,i)}var u=e(t,[["render",c],["__file","base64.html.vue"]]);export{u as default};