Nice software for humans (by humans)
Speaks: go/simply python/rapidly bash/compositely guile/slyly
Nice software for humans (by humans)
Speaks: go/simply python/rapidly bash/compositely guile/slyly
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
- [SC1000](https://github.com/koalaman/shellcheck/wiki/SC1000) $ is not used specially and should therefore be escaped.
- [SC1001](https://github.com/koalaman/shellcheck/wiki/SC1001) This `\o` will be a regular 'o' in this context.
- [SC1003](https://github.com/koalaman/shellcheck/wiki/SC1003) Want to escape a single quote? echo 'This is how it'\\''s done'.
- [SC1004](https://github.com/koalaman/shellcheck/wiki/SC1004) This backslash+linefeed is literal. Break outside single quotes if you just want to break the line.
- [SC1007](https://github.com/koalaman/shellcheck/wiki/SC1007) Remove space after = if trying to assign a value (or for empty string, use var='' ... ).