diff options
author | EuAndreh <eu@euandre.org> | 2019-12-29 21:32:16 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-12-29 21:32:16 -0300 |
commit | 22e09a204a376adbe762bfd52a59745fc1f1ec7d (patch) | |
tree | abf99bb7f1577e45236f6a999ef5c4d3d3e920ba /spelling/check-spelling.sh | |
parent | pastebin: Add raku type snippet (diff) | |
download | euandre.org-22e09a204a376adbe762bfd52a59745fc1f1ec7d.tar.gz euandre.org-22e09a204a376adbe762bfd52a59745fc1f1ec7d.tar.xz |
spelling/check-spelling.sh: Add fr language
Diffstat (limited to '')
-rwxr-xr-x | spelling/check-spelling.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spelling/check-spelling.sh b/spelling/check-spelling.sh index 5f7b450..60ae5df 100755 --- a/spelling/check-spelling.sh +++ b/spelling/check-spelling.sh @@ -22,7 +22,7 @@ cat spelling/international.dic.txt spelling/en_US.dic.txt spelling/en_US.aff.txt check() { html="$1" echo "$1" - hunspell -l -p dicts.txt -d en_US -i utf-8 "$html" | tee -a spelling.txt + 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' -print0 | xargs -0 -I{} bash -c "check {}" \; |