RE: Automatic execute of script

2001-12-29 Thread jeff
ecember 28, 2001 1:32 PM To: 'Tom Bartos'; jeff; Beginners Subject: RE: Automatic execute of script You can sometimes get at it from the client side...if you can set up something on a machine that you control to periodically request a webpage from the server, and if that web page runs the per

RE: Automatic execute of script

2001-12-28 Thread Chris Spurgeon
: jeff; Beginners Subject: Re: Automatic execute of script the AT command works a lot like cron, see if you can use the AT command - Original Message - From: "jeff" <[EMAIL PROTECTED]> To: "Beginners" <[EMAIL PROTECTED]> Sent: Friday, December 28, 2001 9:37 A

Re: Automatic execute of script

2001-12-28 Thread Tom Bartos
the AT command works a lot like cron, see if you can use the AT command - Original Message - From: "jeff" <[EMAIL PROTECTED]> To: "Beginners" <[EMAIL PROTECTED]> Sent: Friday, December 28, 2001 9:37 AM Subject: RE: Automatic execute of script > Ou

RE: Automatic execute of script

2001-12-28 Thread Jeff Liu
PROTECTED]] Sent: December 28, 2001 12:37 PM To: Beginners Subject: RE: Automatic execute of script Our business hosting service does not allow cron, they recommend checking with a third party. I write the scripts on a windows machine and upload them to the apache Unix server to test and execu

RE: Automatic execute of script

2001-12-28 Thread Maciejewski, Thomas
: Friday, December 28, 2001 12:37 PM To: Beginners Subject: RE: Automatic execute of script Our business hosting service does not allow cron, they recommend checking with a third party. I write the scripts on a windows machine and upload them to the apache Unix server to test and execute them. Do you

RE: Automatic execute of script

2001-12-28 Thread jeff
Liu [mailto:[EMAIL PROTECTED]] Sent: Friday, December 28, 2001 11:45 AM To: jeff; Beginners Subject: RE: Automatic execute of script If you are using Unix, add your script in /etc/crontab like this. 0 3 * * * root /usr/local/bin/your-script 0 means run at minute 0. 3 means run at 3:00a.m. * means

RE: Automatic execute of script

2001-12-28 Thread Jeff Liu
If you are using Unix, add your script in /etc/crontab like this. 0 3 * * * root /usr/local/bin/your-script 0 means run at minute 0. 3 means run at 3:00a.m. * means every day Jeff Liu -Original Message- From: jeff [mailto:[EMAIL PROTECTED]] Sent: December 28, 2001 11:41 AM To: Beginn

RE: Automatic execute of script

2001-12-28 Thread David . Neal
On unix you wanna look at cron man crontab on NT you could use 'at' I think ... D > -Original Message- > From: webmaster > Sent: 28 December 2001 16:41 > To: beginners > Cc: webmaster > Subject: Automatic execute of script > > > Does anyone know how to get a script to execute at