shell脚本

  • 创建一个文件: touch test.sh
  • 给文件执行权限: chmod +x test.sh
  • 编辑test.sh :
#!/bin/sh
# 这里的内容就得自己写了,你可以在这里写任何在 terminal 可以成功执行的代码
...
  • 执行 ./test.sh

你可能感兴趣的:(shell脚本)