#!/bin/bash
echo "Content-Type: text/plain"
echo
echo "Running a Bash shell script from cgi-bin successfully!"
echo -n "Now it's: "
date
echo -n "User: "
whoami
echo -n "Directory: "
ls -l
exit 0
