#!/bin/sh
# This comand replaces all occurrences of
# <hr> with <hr /> and <br> with <br />
sed 's|<hr>|<hr />|g ; s|<br>|<br />|g' ex3.html
