forgotten-roads/blog

Add spell-checker to CLI

Opened this issue · 1 comments

Support frmx check content spelling

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