linux下对sh文件的基本操作总结

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

你可能感兴趣的:(linux,linux,运维,服务器)