about shell
摘抄 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
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。