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

linux shell的操作

时间:2016-08-01 15:36:15      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

一、linux下对sh文件的操作

1、创建test.sh文件

touch test.sh

2、编辑sh文件

vi test.sh(i:插入 | esc:退出insert模式 | wq+回车:退出)

3、保存退出

敲击esc, 然后输入 :wq ,回车退出 

4、添加可执行权限,当然默认就是可执行的。

chmod +x test.sh

5、运行文件

(2)sh test.sh

rm test.sh

6 、sh中的注释:#

二 linux中echo命令的换行方法:

 

echo -e "text1\ntext2"

 

输出结果

 

text1

 

text2

 

linux shell的操作

标签:

原文地址:http://www.cnblogs.com/xitingxie/p/5725600.html

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