From 0d5453cdd55868a442f8e1932a3d83e65f5ceda7 Mon Sep 17 00:00:00 2001 From: Oliver Schraml Date: Wed, 25 Oct 2017 08:22:39 +0200 Subject: [PATCH] spellme.sh: added special characters --- spellme.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/spellme.sh b/spellme.sh index 4d85b60..442e242 100755 --- a/spellme.sh +++ b/spellme.sh @@ -28,5 +28,28 @@ do sed -e "s/^[xX]$/\\\\033[1;31mX\\\\033[00m-RAY/" | \ sed -e "s/^[yY]$/\\\\033[1;31mY\\\\033[00mANKEE/" | \ sed -e "s/^[zZ]$/\\\\033[1;31mZ\\\\033[00mULU/" \ + sed -e "s/^\*$/\\\\033[1;31m\*\\\\033[00mASTERISK/" \ + sed -e "s/^\'$/\\\\033[1;31m\'\\\\033[00mSINGLE QUOTE/" \ + sed -e "s/^\"$/\\\\033[1;31m\"\\\\033[00mDOUBLE QUOTE/" \ + sed -e "s/^\^$/\\\\033[1;31m\^\\\\033[00mCIRCUMFLEX/" \ + sed -e "s/^\_$/\\\\033[1;31m\_\\\\033[00mUNDERSCORE/" \ + sed -e "s/^\-$/\\\\033[1;31m\-\\\\033[00mHYPHEN/" \ + sed -e "s/^\&$/\\\\033[1;31m\&\\\\033[00mAMPERSAND/" \ + sed -e "s/^\%$/\\\\033[1;31m\%\\\\033[00mPERCENT/" \ + sed -e "s/^\~$/\\\\033[1;31m\~\\\\033[00mTILDE/" \ + sed -e "s/^\/$/\\\\033[1;31m\/\\\\033[00mSLASH/" \ + sed -e "s/^\\$/\\\\033[1;31m\\\\\\033[00mBACKSLASH/" \ + sed -e "s/^\($/\\\\033[1;31m\(\\\\033[00mOPENING PARENTHESIS/" \ + sed -e "s/^\)$/\\\\033[1;31m\)\\\\033[00mCLOSING PARENTHESIS/" \ + sed -e "s/^\[$/\\\\033[1;31m\[\\\\033[00mOPENING BRACKET/" \ + sed -e "s/^\]$/\\\\033[1;31m\]\\\\033[00mCLOSING BRACKET/" \ + sed -e "s/^\{$/\\\\033[1;31m\{\\\\033[00mOPENING (CURLY)BRACE/" \ + sed -e "s/^\}$/\\\\033[1;31m\}\\\\033[00mCLOSING (CURLY)BRACE/" \ + sed -e "s/^\<$/\\\\033[1;31m\<\\\\033[00mOPENING ANGLE BRACKET/" \ + sed -e "s/^\>$/\\\\033[1;31m\>\\\\033[00mCLOSING ANGLE BRACKET/" \ + sed -e "s/^\|$/\\\\033[1;31m\|\\\\033[00mVERTICAL BAR/" \ + 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/" \ )" done