base32

Encode or decode file or stdin to/from Base32, to stdout. More information: <https://www.gnu.org/software/coreutils/base32>.

Install

All systems
curl cmd.cat/base32.sh
Debian Debian
apt-get install coreutils
Ubuntu
apt-get install coreutils
Alpine
apk add coreutils
Arch Arch Linux
pacman -S coreutils
image/svg+xml Kali Linux
apt-get install coreutils
CentOS
yum install coreutils
Fedora
dnf install coreutils
Windows (WSL2)
sudo apt-get update sudo apt-get install coreutils
OS X
brew install coreutils
Raspbian
apt-get install coreutils
Docker
docker run cmd.cat/base32 base32 powered by Commando

Encode or decode file or stdin to/from Base32, to stdout. More information: <https://www.gnu.org/software/coreutils/base32>.

  • Encode a file:
    base32 path/to/file
  • Decode a file:
    base32 --decode path/to/file
  • Encode from `stdin`:
    somecommand | base32
  • Decode from `stdin`:
    somecommand | base32 --decode

© tl;dr; authors and contributors