文件名称:run:脚本以统一方式运行其他脚本
文件大小:2KB
文件格式:ZIP
更新时间:2024-04-30 17:48:13
Shell
跑步 脚本以统一的方式调用其他脚本。 用法 ./run TASK [TASK_ARGUMENTS...] 如果TASK脚本不存在,则run的退出代码为2,否则它与TASK的退出代码一起存在。 入门 把run到一个文件夹:) tree . ├── [...] └── run 在它旁边创建一个脚本文件夹 mkdir scripts tree . ├── [...] ├── scripts └── run 创建一个脚本并使其可执行 echo "#\!/bin/sh\\necho \"hi, this is \$RUN_TASK\"" > scripts/mytask chmod +x scripts/mytask 通过run运行脚本 ./run mytask hi, this is mytask 环境变量(由run设置) 在run调用脚本之前,以下环境变量已导出,因此它们在脚本中始终可用:
【文件预览】:
run-main
----run(335B)
----README.md(1KB)
----scripts()
--------example_python(76B)
--------example_sh(40B)
--------examples(105B)
--------example_node(68B)
--------example_php(71B)