The only Zen you find on top of mountains
is the Zen you bring there.
html strip tags
Legge tutti i files html contenuti in una directory [non scende
ricursivamente nelle sottodirectory] eliminandone i tag e li concatena in un
unico file ASCII conservando i commenti HTML.
cat *.htm |perl -e {'while () { s/<.*>//s; print }'} > output_text_fileIdem come sopra ma ricursivo ;-)
find . -iname "*.htm*" |perl -e {'while () { s/<.*>//s; print }'} > output_text_file- fabio's blog
- Login to post comments

