Awesome tools¶ Shell¶ Shellcheck 1sudo apt install -y shellcheck 1 2 3 4 5 6 7 8 9 10 11❯ 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 ... explainshell.com Google Shell Style Guide