# cksum - 检查文件的crc是否正确

检查文件的crc是否正确,统计文件的字节数.

# 适用范围

RedHat
RHEL
Ubuntu
CentOS
Debian
Deepin
SUSE
openSUSE
Fedora
Linux Mint
Alpine Linux
Arch Linux

# 语法

cksum  [选项]  file

# 选项

--help                           # 显示帮助文档
--version                        # 显示命令版本信息

# 举例

[sogrey@bogon 文档]$ ls
backup  demos
[sogrey@bogon 文档]$ cd demos
[sogrey@bogon demos]$ ls
test2.txt  test3.txt  test4.txt  test.c  test.txt
[sogrey@bogon demos]$ cksum test.c
# crc校验 字节数 文件名   
4294967295 0 test.c
[sogrey@bogon demos]$ cksum test.txt
# crc校验 字节数 文件名   
3701171500 250 test.txt
[sogrey@bogon demos]$