sha1sum命令用于对文件进行唯一较验的hash算法。
用法
sha1sum [OPTION] [FILE]...
参数
-b, --binary:二进制模式读取
-c, --check:根据sha1 num检查文件
-t, --text:文本模式读取(默认)
实例1
sha1sum filepath
实例2
[root@localhost ~]# sha1sum install.log #install.log的sha1值
0750a96a87738a2d2173bbee12e40e6ab17136c6 install.log
[root@localhost ~]# sha1sum -b install.log #二进制模块读取
0750a96a87738a2d2173bbee12e40e6ab17136c6 *install.log
[root@localhost ~]# sha1sum install.log > aa
[root@localhost ~]# sha1sum -c aa #根据sha1值,检查文件
install.log: OK