feature: spelling check function, non interactive

This commit is contained in:
MorganGeek 2020-07-15 22:41:03 +02:00
parent a85ab418ed
commit 29f4e5ecb1

View File

@ -269,6 +269,13 @@ function invalid_file_refs() {
done < <(filerefs "$1")
}
# Text search
# run aspell in non interactive mode, to list all mispelled words found
function checkenlist() {
aspell -d en list < "$1" | sort --unique --ignore-case
}
# File stats helpers
# Find files bigger than X size and sort them by size
function biggerthan() {