在Linux系统中,可以使用base64
命令对字符串进行编码(加密)和解码(解密)。以下是详细使用方法:
echo -n "原始字符串" | base64
示例:
echo -n "hello world" | base64
# 输出:aGVsbG8gd29ybGQ=
参数说明:
- -n
:禁止echo
在末尾添加换行符(避免编码结果包含多余字符)。
echo "Base64编码后的字符串" | base64 -d
示例:
echo "aGVsbG8gd29ybGQ=" | base64 -d
# 输出:hello world
参数说明:
- -d
或 --decode
:解码模式。
base64 input.txt > encoded.txt
base64 -d encoded.txt > decoded.txt
-n
取消换行。base64
是GNU coreutils的一部分,所有Linux发行版默认安装。invalid input
。如果系统无base64
命令,可用OpenSSL替代:
# 编码
echo -n "hello" | openssl base64
# 解码
echo "aGVsbG8=" | openssl base64 -d
通过以上命令,你可以轻松在Linux中实现Base64的编解码操作。