前言

Shell实现Base64编解码

Base64编码

1
echo "<str>" | base64

Base64解码

1
echo "<str>" | base64 -d

完成

参考文献

CSDN——baiduoWang