shellharden 4.0.0

A bash syntax highlighter that encourages (and can fix) proper quoting of variables
1
2
3
4
5
6
7
8
9
# implemented
echo $(pwd)a
echo "$(pwd)a"
echo "$(pwd)."

# not implemented
echo "$( pwd)"
echo "$(pwd )"
echo "`pwd`"