aboutsummaryrefslogblamecommitdiff
path: root/spelling/check-spelling.sh
blob: c9f03d26644d0bf74d6bf722ca9a4c6ebfc4d516 (plain) (tree)
1
2
3
4
5
6




                           
                                  






                                   
                                   





                                                            
                              


           
                                                                                   

               
                                                                                               

                              
                                                          
                            
                  
        
    
                           
  
#!/usr/bin/env bash
set -Eeuo pipefail

HTML_DIR="${1:-}"
[[ -z "${HTML_DIR}" ]] && {
  echo 'Undefined input HTML_DIR.'
  exit 2
}

# Required by =sort= and =hunspell=
export LANG=C.UTF-8

for DICT in spelling/*.txt; do
  diff <(sort "$DICT") "$DICT" || {
    echo "The $DICT dictionary is unsorted. To fix it, run:"
    echo "  LANG=C.UTF-8 sort $DICT | sponge $DICT"
    exit 1
  }
done

cat spelling/*.txt > dicts.txt
check() {
  html="$1"
  echo "$1"
  hunspell -l -p dicts.txt -d fr_FR -d en_US -i utf-8 "$html" | tee -a spelling.txt
}
export -f check
find "${HTML_DIR}" -type f -name '*.html' | grep -v pastebin | xargs -I{} bash -c "check {}" \;

if [[ -s spelling.txt ]]; then
  printf "\nvvv Mispelled words detected by hunspell.\n\n"
  sort < spelling.txt | uniq
  printf "\n^^^\n"
  exit 1
else
  echo "No words mispelled"
fi