Converting Shell Script to HTML

Hi,

Im new to shell scripting. My task is to convert shell script feed into html, so basically I have a lot of information in shell script and I want to convert it html. I know you can simply convert the information by hand, but is there any simpler way? Thank you

Dave

HTSH is FREE tool for embedding SHell script into HTML pages. - I found this on the net, HTH.

What do you mean by "shell script feed"?

To display a shell script in a web page, all you need to do is convert ampersands and less-than signs:

sed -e 's/&/&/g' -e 's/</\<>/g' script.sh

Put the result in a PRE element.

Or are you trying to convert a shell script into a CGI script?