From 2425426b82c602d1d37dccf4df04f84e66b654bb Mon Sep 17 00:00:00 2001 From: Oliver Schraml Date: Wed, 25 Oct 2017 08:52:24 +0200 Subject: [PATCH] spellme.sh: added nother special characters --- spellme.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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