diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-02-21 18:45:07 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-02-21 18:45:07 -0500 |
| commit | a504b63dfaa23ac6ba420942f71d859630c03e0e (patch) | |
| tree | 9dff1f05c408fabfa5da7dcbfc5b901f14706af9 /scripts/mismatch | |
| parent | c82d20316320d8584f0a9fa1218f0e73d1fc4530 (diff) | |
refactor!: Unused Programs Removed
Multiple unused programs have be removed. These programs were
unmaintained, no longer functioning, and/or had no purpose anymore.
BREAKING CHANGE: Multiple scripts removed
Diffstat (limited to 'scripts/mismatch')
| -rwxr-xr-x | scripts/mismatch | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/mismatch b/scripts/mismatch deleted file mode 100755 index 38776bc..0000000 --- a/scripts/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 - |
