cmp.1

来自「Unix操作系统minix 2.0源码」· 1 代码 · 共 60 行

1
60
字号


CMP(1)                    Minix Programmer's Manual                     CMP(1)


NAME
     cmp - compare two files

SYNOPSIS
     cmp [-ls] file1 file2

OPTIONS

     -l   Loud mode. Print bytes that differ (in octal)

     -s   Silent mode.  Print nothing, just return exit status

EXAMPLES

     cmp file1 file2     # Tell whether the files are the same

     cmp -l file1 file2  # Print all corresponding bytes that differ

DESCRIPTION

     Two files are  compared.   If  they  are  identical,  exit  status  0  is
     returned.   If  they  differ,  exit  status  1 is returned.  If the files
     cannot be opened, exit  status  2  is  returned.   If  one  of  the  file
     arguments is -, then stdin is compared to the other file.

SEE ALSO
     comm(1), diff(1).

























                                                                             1

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?