Strip HTML tags from file
sed -e 's#< [^>]*>##g' < index.php > index.txt
Another way of doing it:
sed 's/< [^>]*>//g' < index.php > index.txt
A chronological documentation test project, nothing serious, really!
sed -e 's#< [^>]*>##g' < index.php > index.txt
Another way of doing it:
sed 's/< [^>]*>//g' < index.php > index.txt