summaryrefslogtreecommitdiff
path: root/.local/bin/mismatch
diff options
context:
space:
mode:
Diffstat (limited to '.local/bin/mismatch')
-rwxr-xr-x.local/bin/mismatch12
1 files changed, 12 insertions, 0 deletions
diff --git a/.local/bin/mismatch b/.local/bin/mismatch
new file mode 100755
index 0000000..2987b2f
--- /dev/null
+++ b/.local/bin/mismatch
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+DICTFILE=/usr/share/dict/words
+
+[ -z $1 ] && words=$(< /dev/stdin) || words=$1
+
+for word in $words
+do
+ echo "Word: $word"
+ [ -z "$(grep -i "\b$word\b" $DICTFILE)" ] && echo $word
+done
+