cat命令总结

cat:拼接文件或者打印到标准输出。常用参数:-n或者缺省。

[root@oldboy ~]# man cat
CAT(1)                           User Commands                          CAT(1)

NAME
       cat - concatenate files and print on the standard output

SYNOPSIS
       cat [OPTION]... [FILE]...

DESCRIPTION
       Concatenate FILE(s), or standard input, to standard output.

       -A, --show-all
              equivalent to -vET

       -b, --number-nonblank
              number nonempty output lines

       -e     equivalent to -vE

       -E, --show-ends
              display $ at end of each line

       -n, --number
              number all output lines

       -s, --squeeze-blank
              suppress repeated empty output lines

       -t     equivalent to -vT

       -T, --show-tabs
              display TAB characters as ^I

       -u     (ignored)

       -v, --show-nonprinting
              use ^ and M- notation, except for LFD and TAB

       --help display this help and exit

       --version
              output version information and exit

       With no FILE, or when FILE is -, read standard input.

EXAMPLES
       cat f - g
              Output  f’s contents, then standard input, then g’s con-
              tents.

       cat    Copy standard input to standard output.


1、缺省参数:将文件打印到标准输出。

[root@oldboy ~]# cat test.txt 
test
liyao
oldboy
test
just

oldboy
test
[root@oldboy ~]#

2、-n参数:打印文件到标准输出并打印每行的行号。

[root@oldboy ~]# cat -n test.txt 
     1  test
     2  liyao
     3  oldboy
     4  test
     5  just
     6
     7  oldboy
     8  test
[root@oldboy ~]#

3、利用重定向符号,输入内容到文件。

[root@oldboy ~]# cat >> test.txt <<EOF
> Just for a test
> EOF
[root@oldboy ~]# cat -n test.txt 
     1  test
     2  liyao
     3  oldboy
     4  test
     5  just
     6
     7  oldboy
     8  test
     9  Just for a test
[root@oldboy ~]#

4、-e参数:显示结束符,以$符结尾。

[root@oldboy ~]# cat -E test.txt 
test$
liyao$
oldboy$
test$
just$
$
oldboy$
test$
Just for a test$

5、拼接文件内容,将两个文件同时输出到标准输出。

[root@oldboy ~]# cat test.txt 
test
liyao
oldboy
test
just

oldboy
test
Just for a test
[root@oldboy ~]# cat just_test.txt 
hello world
[root@oldboy ~]# cat just_test.txt test.txt 
hello world
test
liyao
oldboy
test
just

oldboy
test
Just for a test
[root@oldboy ~]#


你可能感兴趣的:(命令,cat)