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)"