BackTalk 1.33 by Seor Bean: Remote script processor.  Put it on a task scheduler!
Run stuff overnight...so I can send my 100 page print jobs without worry.
Best with a regularly scheduled task scheduler.  (cron, mstask, etc.)

java BackTalk [sJobFile]

  sJobFile URL  Specifies job script to read commands from.  It can be a URL or
                a file path.  Default: http://thibs.menloschool.org/~bean/print
                /jobs.txt.  Logs are dumped to the "l_" + the file's name, e.g.
                ./l_jobs.txt.

Job script format:  Put any of these commands in a text file.

COPYFILE source dest -- Copies source to dest.
DELETE file -- Deletes file
DOWNLOAD fileURL localfile -- Downloads fileURL to localfile.
EXEC command -- Executes command as a native process.
MAILFILE filetomail smtp rcpt -- Sends filetomail to rcpt via smtp.
MAILLOG smtp rcpt -- Sends log to rcpt via smtp.
MAILURL urltomail smtp rcpt -- Sends urltomail to rcpt via smtp.
MKDIR folder -- Creates folder (and any parent folders necessary.
PRINTFILE file printer port -- Prints file to printer on port "port".
PRINTURL fileURL printer port -- Prints fileURL to printer on port "port".
SLEEP time -- Sleeps for time ms.
TOUCHFILE file -- Downloads file to a bit bucket.
TOUCHURL URL -- Downloads URL to a bit bucket.
