shellharden 4.0.0

A bash syntax highlighter that encourages (and can fix) proper quoting of variables
#!/bin/bash

abc=$'a\nb\nc'

usage_heredoc(){
cat <<	EOF
$abc
EOF
}

usage_heretic(){
	echo "$abc"
}

usage_hermetic(){
	echo "$abc"
}

usage_heredoc
usage_heretic
usage_hermetic