Hi,How do you run a perl script in cygwin as scheduled job in windows.Any ideas.what exactly is the path to be given to run
cron
Generally, if you're using cygwin, you would probably be using cron - otherwise you might as well use the native OS's Windows Scheduler or similar.
What exactly is the command need to be given in the run fieild if i want to schedule it on the native OS's windows scheduler
"c:\iw-home\iw-perl\bin\iwperl.exe c:\iw-home\local\bin\myscript.ipl arg1 arg2"
The path to perl, the path to the script, and any arguments - probably the entire thing within quotes - something like: "c:\iw-home\iw-perl\bin\iwperl.exe c:\iw-home\local\bin\myscript.ipl arg1 arg2" Why? What did you think it was?
My perl script has a find command which i run on cygwin in windows.The path you mentioned is to run perl script normally.I need to run it in cygwin as a scheduled job using windows Scheduler.I was wondering what path i have to give for running in cygwin