format file output

Hi,

I am trying to put a script together that allows for a command to be executed and then the output goes to a .html file. I am running the script on HPUX.

I run:
/var/fl/user/lmutil lmstat -a -c license_lic.dat > /web/results.html

This saves the command to a .html file but the text is all together like:
No such feature exists. (-5,222) Users of GZCT2: Cannot get users of GZCT2: No such feature exists. (-5,222) Users of GZCT1: Cannot get users of GZCT1: No such feature exists. (-5,222) Users of ICPDAH: Cannot get users of ICPDAH: No such feature exists. (-5,222) Users of JNJMELV: Cannot get users of JNJMELV: No such feature exists. (-5,222) Users of Af_xLoadUPrt: Cannot get users of Af_xLoadUPrt: No such feature exists. (-5,222) Users of Af_xLoadStep: Cannot get users of Af_xLoadStep: No such feature exists. (-5,222)

I want to get the text to look like this:
Users of GZCT1: Cannot get users of GZCT1: No such feature exists. (-5,222)
Users of ICPDAH: Cannot get users of ICPDAH: No such feature exists. (-5,222)
Users of JNJMELV: Cannot get users of JNJMELV: No such feature exists. (-5,222)
Users of Af_xLoadUPrt: Cannot get users of Af_xLoadUPrt: No such feature exists. (-5,222)
Users of Af_xLoadStep: Cannot get users of Af_xLoadStep: No such feature exists. (-5,222)

Does anyone have any ideas on how to format the output?

Thanks!

sed 's/Users of /\nUsers of /g' ddd.txt | sed '1d'