forgotten-roads / blog

The Blog of Forgotten Roads MX
Apache License 2.0
1 stars 0 forks source link

Add spell-checker to CLI #77

Open bobbermac opened 7 years ago

bobbermac commented 7 years ago

Support frmx check content spelling

bobbermac commented 7 years ago

First step:

for FILE in `find posts -name content.rfc5322`; 
  do 
  echo
  echo "------------------------------------------------------------"
  echo "Spell-checking file: $FILE"
  echo "------------------------------------------------------------"
  ispell -l -H < $FILE |sort -u
  done