Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] How to pass command line parameters?
- Date: Sun, 4 Dec 2005 11:34:19 -0600
- From: Erik Paulson <epaulson@xxxxxxxxxxx>
- Subject: Re: [Condor-users] How to pass command line parameters?
On Sun, Dec 04, 2005 at 03:05:16PM +0200, Gal Ostfeld wrote:
> Hi,
>
> I have a btach file (.bat) to run on Windows XP or 2000.
> The batch file needs to get a command line parameter adn I need it to be
> launched with a different parameter on each job submitted.
> Can anyone point me to an example or explain how this is done.
http://www.cs.wisc.edu/condor/manual/v6.6/2_5Submitting_Job.html
A very fast example:
universe = vanilla
executable = some_batch_file.bat
transfer_files = always
transfer_input_files = inputfile
arguments = -3 inputfile
output = job.out
log = job.log
queue