We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eea809 commit 9c91ba2Copy full SHA for 9c91ba2
scripts/introduction-to-text-processing/spell_checking_success.sh
@@ -1,6 +1,6 @@
1
#! /bin/bash
2
3
-tr '[:space:][:punct:]' '\n' < ./data/spelling_success.txt |
+tr '[:space:][:punct:]' '\n' < ./data/spelling_errors.txt |
4
tr '[:upper:]' '[:lower:]' |
5
sort -u |
6
- comm -23 - /usr/share/dict/words
+ comm -23 - <(sort /usr/share/dict/words)
0 commit comments