cmp
比较两个文件。
格式
cmp <file one> <file two>
说明
[root@sylixos:/root]# help cmp
compare two file
cmp [file one] [file two]
[root@sylixos:/root]#
此命令用来比较两个文件是否相同。
样例
[root@sylixos:/apps/test]# ls
hello.c hello2.c temp.txt
[root@sylixos:/apps/test]# cmp hello.c temp.txt
file not same!
[root@sylixos:/apps/test]# cmp hello.c hello2.c
file same!
[root@sylixos:/apps/test]#