ubuntu:bash:shellcheck
Differences
This shows you the differences between two versions of the page.
ubuntu:bash:shellcheck [2019/11/29 11:21] – created peter | ubuntu:bash:shellcheck [2019/12/07 01:46] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Ubuntu - 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! | ||
ubuntu/bash/shellcheck.1575026506.txt.gz · Last modified: 2020/07/15 09:30 (external edit)