diff --git a/spellme.sh b/spellme.sh index 615fad4..668725a 100755 --- a/spellme.sh +++ b/spellme.sh @@ -49,6 +49,14 @@ do sed -e "s/^>$/\\\\033[1;31m\>\\\\033[00mCLOSING ANGLE BRACKET/" | \ sed -e "s/^\#$/\\\\033[1;31m\#\\\\033[00mHASH/" | \ sed -e "s/^\@$/\\\\033[1;31m\@\\\\033[00mAT-SIGN/" | \ - sed -e "s/^\=$/\\\\033[1;31m\=\\\\033[00mEQUALS/" \ + sed -e "s/^\.$/\\\\033[1;31m\.\\\\033[00mDOT/" | \ + sed -e "s/^\,$/\\\\033[1;31m\,\\\\033[00mCOMMA/" | \ + sed -e "s/^\:$/\\\\033[1;31m\:\\\\033[00mCOLON/" | \ + sed -e "s/^\;$/\\\\033[1;31m\;\\\\033[00mSEMICOLON/" | \ + sed -e "s/^\?$/\\\\033[1;31m\?\\\\033[00mQUESTION MARK/" | \ + sed -e "s/^\!$/\\\\033[1;31m\!\\\\033[00mEXCLAMATION MARK/" | \ + sed -e "s/^\+$/\\\\033[1;31m\+\\\\033[00mPLUS SIGN/" | \ + sed -e "s/^\=$/\\\\033[1;31m\=\\\\033[00mEQUALS/" | \ + sed -e "s/^\ $/\\\\033[1;31m\ \\\\033[00mSPACE/" \ )" | sed -e "s/|/\\\\033[1;31m\|\\\\033[00mPIPE/" ) done