sha1sum对文件进行唯一较验的hash算法,
用法: sha1sum [OPTION] [FILE]...
参数:
-b, --binary 二进制模式读取
-c, --check 根据sha1 num检查文件
-t, --text 文本模式读取(默认)
sha1sum filepath
[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
评论(0)
暂无评论