#!/bin/bash # Move to the directory that this file is in. cd `dirname $0` # Create the necessary HTML components for a web page. ./helpers/body_open.php echo -e "\t\t

This is a web page written in BASH!!!

" cat << EOF

Look at all the fancy things we can do!

Current Time

We can use the date command to spit out the time!

`date`

EOF # Create a subsection echo -e "\t\t

Server Neofetch

" echo -e "\t\t

" neofetch --stdout echo -e "\t\t

" # Finish the web page ./helpers/body_close.php