find . -name "*.html" | while read file; do
python3 -c "import sys, html.parser;
class T(html.parser.HTMLParser):
def handle_data(self, data): sys.stdout.write(data + ' ')
p = T(); p.feed(sys.stdin.read())" < "$file" > "${file%.html}.txt"
done
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)