bash:shellcheck
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:shellcheck [2019/11/29 11:20] – removed peter | bash:shellcheck [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== BASH - ShellCheck ====== | ||
+ | |||
+ | [[https:// | ||
+ | |||
+ | For example, here is one common mistake which ShellCheck picks up. Most times, the original code will work. However if we feed $dir with value like "Denny Documents", | ||
+ | |||
+ | # Before: | ||
+ | <code bash> | ||
+ | rm -rf $dir | ||
+ | |||
+ | # After: | ||
+ | <code bash> | ||
+ | rm -rf " | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== More Bad Code Examples ===== | ||
+ | |||
+ | ==== Common beginner' | ||
+ | |||
+ | ShellCheck recognizes many common beginner' | ||
+ | |||
+ | <code bash> | ||
+ | var = 42 # Spaces around = in assignments. | ||
+ | $foo=42 | ||
+ | for $var in *; do ... # $ in for loop variables. | ||
+ | var$n=" | ||
+ | echo ${var$n} | ||
+ | var=(1, 2, 3) # Comma separated arrays. | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ==== Style ==== | ||
+ | |||
+ | ShellCheck can make recommendations to improve style: | ||
+ | |||
+ | <code bash> | ||
+ | [[ -z $(find /tmp | grep msg) ]] # Use grep -q instead. | ||
+ | a >> log; b >> log; c >> log; # Use a redirection block instead. | ||
+ | cat file | grep foo # Useless use of cat. | ||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ShellCheck is very easy to install and use. It is built and packaged using Cabal. We can install by apt-get/ | ||
+ | |||
+ | <code bash> | ||
+ | # Install ShellCheck | ||
+ | sudo apt-get install -y cabal-install | ||
+ | sudo cabal update | ||
+ | sudo cabal install shellcheck | ||
+ | ln -s / | ||
+ | |||
+ | # Example: Run check for Shell scripts | ||
+ | sudo shellcheck my_script.sh | ||
+ | </ | ||
+ | |||
+ | By default, ShellCheck enforces hundreds of rules. | ||
+ | |||
+ | Skip some ShellCheck rules, which don’t fit your projects. | ||
+ | |||
+ | <code bash> | ||
+ | # Run test excluding certain rules | ||
+ | EXCLUDE_CODE_LIST=" | ||
+ | sudo shellcheck -e $EXCLUDE_CODE_LIST $file | ||
+ | |||
+ | # Run test against all scripts under a folder | ||
+ | EXCLUDE_CODE_LIST=" | ||
+ | find . -name " | ||
+ | shellcheck -e $EXCLUDE_CODE_LIST $file | ||
+ | </ | ||
+ | | ||
+ | | ||
+ | It is recommended to enforce a daily Shell Code Check! | ||
bash/shellcheck.1575026446.txt.gz · Last modified: 2020/07/15 09:30 (external edit)