How to count bytes in a file in linux
How to count bytes in a file in linux
1. checksum Name
cksum- checksum and count the bytes in a file
2. Synopsis checksum
cksum [FILE]... cksum [OPTION]
3. checksum Examples
Create a file file.txt with the following text:
Samba file and printer sharing is supported by all Linux Distributions:Suse Linux, Debian Linux, Mandrake Linux, Red Hat Linux, Fedora Linux, Gentoo Linux .
$ cksum file.txt
cksum calculates a cyclic redundancy check (CRC) of an any given file. Users can check the integrity of any file and see if the file has been modified. Use your favorite text editor and remove a “.” from the end of the sentence to see that CRC will change.
$ cat file.txt
$ cksum file.txt
Source taken from http://linuxconfig.org/
Comments are closed.