比较文件
cmp
命令用来比较两个文件信息,例如:比较 /tmp
目录的 sy 文件和 /tmp/test2 文件的文件信息
[root@sylixos:/tmp]# help cmp
compare two file
cmp [file one] [file two]
[root@sylixos:/tmp]# cmp /apps/test /tmp/test2
file same!
[root@sylixos:/tmp]#
[root@sylixos:/tmp]#
[root@sylixos:/tmp]# touch test
[root@sylixos:/tmp]# ls
test test2
[root@sylixos:/tmp]# cmp /apps/test /tmp/test
file not same!
[root@sylixos:/tmp]#