企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 概述 - 对脚本进行分析纠错 - 可用于持续集成中的脚本检测 - 也可用于命令行的直接检测 ## 示例 ### window ``` > choco install shellcheck > shellcheck *.sh ``` ### Makefile ``` check-scripts: # Fail if any of these files have warnings shellcheck myscripts/*.sh ``` ## #Travis CI .travis.yml ``` script: # Fail if any of these files have warnings - shellcheck myscripts/*.sh ```