feature: check spelling of remote files via fn(x)

This commit is contained in:
MorganGeek 2020-07-17 14:53:14 +02:00
parent 4befc36c8b
commit fa938d9df5

View File

@ -278,6 +278,10 @@ function checkenlist() {
aspell -d en list < "$1" | sort --unique --ignore-case
}
function checkenremote() {
curl -Lks "$1" > /tmp/file && checkenlist /tmp/file
}
# File stats helpers
# Find files bigger than X size and sort them by size
function biggerthan() {