Config to html

Hi,
Does anybody know of a system utility or a script that is used on IRIX(SGI) server to print out the configuration and information of the system in html format.

Please let me know if you do
thanks in advance

You can dump the information to text files and then collect them on your server - write a script to format them for html (mostly using a <pre> ).

Here is a partial example (written in sh for HP servers):

# DF GENERATION
        TMP_FILENAME="$TMPDIR/$DIR/df.tmp"
        rsh ${TARGET_HOST} '/usr/bin/bdf -t hfs' 2>/dev/null > $TMP_FILENAME
        if [ -s $TMP_FILENAME ]; then
                FILENAME="$TMPDIR/$DIR/df.html"
                cat << EOF > $FILENAME
<HTML>
<TITLE>${TARGET_HOST}</TITLE>
<BODY BGCOLOR="$BACKGROUND_COLOR">
<FONT SIZE="$FONT_SIZE">
<PRE>
<B><FONT SIZE="$TITLE_SIZE">$TARGET_HOST</FONT></B>
<FONT SIZE="0" FACE="arial">
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var m = "Updated: " + document.lastModified;
var p = m.length;
document.write(m.substring(p, 0));
// End -->
</SCRIPT>
<FONT SIZE="$FONT_SIZE">
EOF
echo "<br><br>" >> $FILENAME
echo "HFS Filesystems:" >> $FILENAME
echo "<br><br>" >> $FILENAME
        rsh ${TARGET_HOST} '/usr/bin/bdf -t hfs' \
            2>/dev/null >> $FILENAME
echo "<br><br>" >> $FILENAME
echo "VxFS Filesystems:" >> $FILENAME
echo "<br><br>" >> $FILENAME
        rsh ${TARGET_HOST} '/usr/bin/bdf -t vxfs' \
            2>/dev/null >> $FILENAME
echo "<br><br>" >> $FILENAME
echo "TmpFS Filesystems:" >> $FILENAME
echo "<br><br>" >> $FILENAME
        rsh ${TARGET_HOST} '/usr/bin/bdf -t tmpfs' \
            2>/dev/null >> $FILENAME

                cat << EOF >> $FILENAME
</PRE>
</BODY>
</HTML>
EOF
                cp $FILENAME $ROOT/$DIR
                /usr/bin/rm $TMP_FILENAME
        fi
#

Note to RTM: I added a [/code]tag at the end of your code directive ......