在linux下创建一个可运行shell脚本(.sh文件)

2022/2/11 7:12:34

本文主要是介绍在linux下创建一个可运行shell脚本(.sh文件),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1.touch hello.sh

2.vim hello.sh

  use "i" to write into the file 

    write:

    #!/bin/sh

    echo hello world;

3.use"esc"、 "wq" to save the file

4.chmod 700 hello.sh (change the binary file mode)

5.execute the file by the commond: bash ./hello.sh



这篇关于在linux下创建一个可运行shell脚本(.sh文件)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程