Mobile app version of vmapp.org
Login or Join
Cody1181609

: If you're running Linux, you might consider the following process: Download the site recursively with wget -r http://site.com/ Parse out all of the HTML tags with find ./ -name *.html -exec

@Cody1181609

If you're running Linux, you might consider the following process:


Download the site recursively with wget -r site.com/ Parse out all of the HTML tags with find ./ -name *.html -exec sed 's/<[^>]*>//g' {} > /var/tmp/all_words.txt ;
Spellcheck the result with spell /var/tmp/all_words.txt (note that in-page Javascript and CSS declarations may be included here - use egrep to filter undesired words)
Review the "misspelled words" list and find/replace in the original directory structure as appropriate
Upload revised static content back to site

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Cody1181609

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme