标签:学习 shel esc 运行 回车 权限 chm 总结 保存
刚刚学习,做一点和shell脚本有关的笔记。
1、创建test.sh文件
touch test.sh
2、编辑sh文件
vi test.sh
3、保存退出
敲击esc, 然后输入 :wq ,回车退出
4、添加可执行权限,当然默认就是可执行的。
chmod +x test.sh
5、运行文件
(1)./test.sh
(2)sh test.sh
6、删除文件
rm test.sh
标签:学习 shel esc 运行 回车 权限 chm 总结 保存
原文地址:http://www.cnblogs.com/GuoSamael/p/7929456.html