sum
Compute checksums and the number of blocks for a file. A predecessor to the more modern cksum. More information: <https://www.gnu.org/software/coreutils/sum>.
Install
- All systems
-
curl cmd.cat/sum.sh
- Debian
-
apt-get install coreutils - Ubuntu
-
apt-get install coreutils -
Alpine
-
apk add coreutils - Arch Linux
-
pacman -S coreutils - Kali Linux
-
apt-get install coreutils - CentOS
-
yum install coreutils - Fedora
-
dnf install coreutils - Windows (WSL2)
-
sudo apt-get updatesudo apt-get install coreutils - OS X
-
brew install coreutils - Raspbian
-
apt-get install coreutils - Docker
-
docker run cmd.cat/sum sumpowered by Commando
Compute checksums and the number of blocks for a file. A predecessor to the more modern cksum. More information: <https://www.gnu.org/software/coreutils/sum>.
-
Compute a checksum with BSD-compatible algorithm and 1024-byte blocks:
sum path/to/file -
Compute a checksum with System V-compatible algorithm and 512-byte blocks:
sum --sysv path/to/file
© tl;dr; authors and contributors