msgbartop
A cronological documentation test project, nothing serious, really!
msgbarbottom

14 Mar 07 Strip HTML tags from file

Posted by

sed -e 's#< [^>]*>##g' < index.php > index.txt

Another way of doing it:

sed 's/< [^>]*>//g' < index.php > index.txt

Tags:

Leave a Comment

You must be logged in to post a comment.