How can I convert all the html files I get into plain text files after a wget command?
I'm thinking of using lynx to convert html files into ".txt" files, getting rid of tags.
I have this snippet to save an entire website, but how can I change it so that it leaves only the text files that are converted from html files on the website "foobar", in my local folder "test"?
wget -P /test/ --recursive http://foobar.html
I'm not sure how to pipe this to lynx and how to specify applying commands for all the files under some specific directory.
.txt
? – Vikyboss Apr 09 '16 at 17:59