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