find . -name "*.html" | while read file; do
sed 's/<[^>]*>//g' "$file" > "${file%.html}.txt"
done
For further actions, you may consider blocking this person and/or reporting abuse
find . -name "*.html" | while read file; do
sed 's/<[^>]*>//g' "$file" > "${file%.html}.txt"
done
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)