Files
cmba-bylaws/tools/spell-check/spell-check
Anthony Correa 97486f02e1 initial restructuring
directory restructuring, remove makefile and build files in repo
2026-01-20 12:24:27 -06:00

10 lines
209 B
Bash
Executable File

#!/bin/bash
set -e
extension_files_to_check=md
function spell_check(){
find . -type f -name "*.${extension_files_to_check}" -exec aspell check {} --mode=markdown --home-dir=./.spell-check \;
}
spell_check