Skip to content

Awesome tools

Shell

  • Shellcheck
sudo apt install -y shellcheck
 shellcheck test/a.sh

In test/a.sh line 5:
echo $GGG
     ^--^ SC2086: Double quote to prevent globbing and word splitting.

Did you mean: 
echo "$GGG"

For more information:
  https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...