欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

在linux下创建一个可运行shell脚本

程序员文章站 2024-02-19 23:36:40
...

1.创建 shell 脚本文件

ouch xxxxx.sh

2.编辑 shell 脚本内容

  1. vim xxxxx.sh
  2. 内容格式如下:
#!/bin/sh
cd /home/chenbolin/output/report;python3 -m http.server 9999

3.保存退出

3.给该 shell 脚本赋权

chmod 755 xxxxx.sh

4.执行启动该脚本
./xxxxx.sh