![]() |
![]()
| ![]() |
![]()
NAMEbasenc - Encode/decode data and print to standard output SYNOPSISbasenc [OPTION]... [FILE] DESCRIPTIONbasenc encode or decode FILE, or standard input, to standard output. With no FILE, or when FILE is -, read standard input. Mandatory arguments to long options are mandatory for short options too.
When decoding, the input may contain newlines in addition to the bytes of the formal alphabet. Use --ignore-garbage to attempt to recover from any other non-alphabet bytes in the encoded stream. ENCODING EXAMPLES$ printf '\376\117\202' | basenc --base64 /k+C $ printf '\376\117\202' | basenc --base64url _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 AUTHORWritten by Simon Josefsson and Assaf Gordon. REPORTING BUGSGNU coreutils online help:
<https://www.gnu.org/software/coreutils/>
COPYRIGHTCopyright © 2025 Free Software Foundation, Inc. License
GPLv3+: GNU GPL version 3 or later
<https://gnu.org/licenses/gpl.html>.
SEE ALSOFull documentation
<https://www.gnu.org/software/coreutils/basenc>
|