|
|
|
|
|
by HenrikB
1581 days ago
|
|
(Disclaimer: I'm the co-developer) Together with GitHub user xPMo, I created a Shellcheck REPL tool (https://github.com/HenrikBengtsson/shellcheck-repl) that validates your Bash commands using ShellCheck _before_ they are evaluated. For example, $ words="lorem ipsum dolor"
$ echo $words
^-- SC2086: Double quote to prevent globbing and word splitting. It was a toy project at first, but since I've learned so much about Bash from using it, I now have it enabled all the time. |
|