sh (posix shell)

# How to do booleans correctly
# => do not use true/false, but 0 and 1
VAR=0
if [ VAR -eq 0 ]; then echo "This is good"; if