#include<stdio.h> int main() { srand(time(NULL)); printf("%d ", (rand() % 1200)); return(0); }
/home/vcordes1/public_html/RndNumberGen > /home/vcordes1/public_html/RndNumber echo "<html>" echo " <head>" echo " <title>Welcome to Random</title>" echo " <style type = "text/css">" echo " <!--" echo " h1 {font-size: 16pt;}" echo " h2 {font-size: 16pt;}" echo " p {font-size: 16pt;" echo " position: relative;" echo " left: 1in;}" echo " h3 {font-size: 16pt;}" echo " body {background-color: #C0C0C0;" echo " font-family: Verdana, Arial;}" echo " -->" echo " </style>" echo " </head>" echo " <body>" echo " <p>This is the random number of the day: `cat RndNumber`</p>" echo "</body>" echo "</html>"
/home/vcordes1/public_html/RndNumberScript > /home/vcordes1/public_html/RndNumberPage.html