Provided by: manpages-zh_1.6.3.6-1_all 

名称
basenc - 编码/解码数据并输出至标准输出
概述
basenc [选项]... [文件]
描述
basenc 可以编码/解码文件或标准输入输出。
如果没有指定文件,或者指定文件为“-”,则从标准输入读取。
必选参数对长短选项同时适用。
--base64
与 'base64' 程序相同(RFC4648 section 4)
--base64url
文件安全和 url 安全的 base64(RFC4648 section 5)
--base32
与 'base32' 程序相同(RFC4648 section 6)
--base32hex
扩展的十六进制(hex)字母表 base32(RFC4648 section 7)
--base16
十六进制(hex)编码(RFC4648 section 8)
--base2msbf
位字符串,最高位(msb)最先
--base2lsbf
位字符串,最低位(lsb)最先
-d, --decode
解码数据
-i, --ignore-garbage
解码时忽略非字母字符
-w, --wrap=字符数
在指定的字符数后自动换行(默认为76),0 为禁用自动换行
--z85 类似 ascii85 的编码(ZeroMQ 标准:32/Z85);编码时,输入长度必须是 4 的倍数;解码时,输入长度必须
是 5 的倍数;
--help 显示此帮助信息并退出
--version
显示版本信息并退出
解码时,输入数据(编码流)可能包含一些换行符,以及不在有效字符范围之内的字符。可以尝试用 --ignore-garbage
选项来绕过编码流中的无效字符。
编码示例
$ printf '\376\117\202' | basenc --base64
/k+C
$ printf '\376\117\202' | basenc --base64
/k+C
$ printf '\376\117\202' | basenc --base32
7ZHYE===
$ printf '\376\117\202' | basenc --base32hex
VP7O4===
$ printf '\376\117\202' | basenc --base16
FE4F82
$ printf '\376\117\202' | basenc --base2lsbf
011111111111001001000001
$ printf '\376\117\202' | basenc --base2msbf
111111100100111110000010
$ printf '\376\117\202\000' | basenc --z85
@.FaC
作者
由 Simon Josefsson 和 Assaf Gordon 编写。
报告错误
GNU coreutils 的在线帮助: <https://www.gnu.org/software/coreutils/>
请向 <https://translationproject.org/team/zh_CN.html> 报告翻译错误。
版权
Copyright © 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later
<https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent
permitted by law.
参见
完整文档请见: <https://www.gnu.org/software/coreutils/basenc>
或者在本地使用: info '(coreutils) basenc invocation'
跋
本页面中文版由中文 man 手册页计划提供。
中文 man 手册页计划:https://github.com/man-pages-zh/manpages-zh
GNU coreutils 8.32 2020年三月 BASENC(1)