Message-ID: <317F4501306FD11187020080ADB4811B15D7CA@cavern> From: Jonathan <hutchins@opus1.com> Subject: Script is Running! Date: Thu, 7 Jun 2001 22:08:07 -0500
Well, not sure exactly what it didn't like, but this works:
#!/bin/sh
echo "Content-type: text/plain"
echo
echo "Just turn off the Toll Saver."
echo "Is the flag there?"
echo
ls -la /var/spool/voice/.flag
echo "Delete it anyway."
rm -f /var/spool/voice/.flag
echo "Done."
Placed in the cgi-bin directory as script.cgi, chmod a+x, and called with
http://hostname/cgi-bin/script.cgi I get:
Just turn off the Toll Saver.
Is the flag there?
-rw-r--r-- 1 root root 28 Jun 7 21:53 /var/spool/voice/.flag
Delete it anyway.
Done.
Yay!
Thanks for your help everybody!
--------------E7365D537AD5254D647C196D