2013-03-13 02:28:49 -04:00

15 lines
151 B
Bash
Executable File

#!/bin/sh
DATE=/bin/date
echo Content-type: text/plain
echo
if [ -x $DATE ]; then
$DATE
else
echo Cannot find date command on this system.
fi