码迷,mamicode.com
首页 > 系统相关 > 详细

about shell

时间:2015-01-30 14:53:54      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

摘抄 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

 

about shell

标签:

原文地址:http://www.cnblogs.com/iidf/p/4261702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!