标签:
摘抄 cat 等
cat主要有三大功能:
1.一次显示整个文件。
$ cat filename
2.从键盘创建一个文件。
$ cat > filename
只能创建新文件,不能编辑已有文件.
3.将几个文件合并为一个文件。
$cat file1 file2 > file
示例
yql@yql-ubuntu:/var/www/test$ cat <<EOF >test.sh > #!/bin/bash > #your shell > EOF yql@yql-ubuntu:/var/www/test$ cat test.sh #!/bin/bash #your shell yql@yql-ubuntu:/var/www/test$ cat <<EOF >>test.sh > #your shell added > EOF yql@yql-ubuntu:/var/www/test$ cat test.sh #!/bin/bash #your shell #your shell added
标签:
原文地址:http://www.cnblogs.com/iidf/p/4261702.html