#!/bin/bash

# make_page - A script to produce an HTML file

# variables:
title="System Information for"



cat <<- _EOF_
<!DOCTYPE html>
<html>
<head>
    <title>
		$title $HOSTNAME
    </title>
</head>

<body>
	<h1>$title $HOSTNAME</h1>
	<p>$ENV</p>
	<p>Updated on $(date +"%x %r %Z") by $USER </p>
</body>
</html>
_EOF_