在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

上一篇:小白程序员呐喊的仪式感"HelloWorld"


下一篇:Python学习笔记(二)——列表