Skip to content

Commit 9c91ba2

Browse files
committed
Fix script in spell check.
1 parent 1eea809 commit 9c91ba2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/bash
22

3-
tr '[:space:][:punct:]' '\n' < ./data/spelling_success.txt |
3+
tr '[:space:][:punct:]' '\n' < ./data/spelling_errors.txt |
44
tr '[:upper:]' '[:lower:]' |
55
sort -u |
6-
comm -23 - /usr/share/dict/words
6+
comm -23 - <(sort /usr/share/dict/words)

0 commit comments

Comments
 (0)