Sum (Unix)


sum is a core utility available on Unix and Unix-like operating systems. This utility outputs the checksum of each argument file, as well as the number of blocks they take on disk.

Overview

There is a GNU utility written by Kayvan Aghaiepour and David MacKenzie and distributed with the Unix- and Linux-based operating systems.
According to the manual page, sum uses two different algorithms for calculating the checksum and blocks, the SYSV checksum algorithm and the BSD checksum algorithm. Switching between the two algorithms is done via command line options.
The algorithms implemented in this program are less sensitive than more modern checksum methods; the SYSV algorithm does not even depend on the order of the data.
The GNU manual page states: "sum is provided for compatibility; the cksum program is preferable in new applications".

Syntax

The sum utility is invoked from the command line according to the following syntax:
sum ... ...
with the possible option parameters being:
When no file parameter is given, or when FILE is -, the standard input is used as input file.