[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Condor-users] Help - running of DOS batch command file under CONDOR



> Basically I first transferred the CMD.EXE  as the executable, 
> then I tried 
> to include the batch command file (i.e. t.bat) as the argument and
> submitted to the vanilla Universe.
> 
> I have tried
>             t.bat      (status as indicated by condor_q:  cmd 
> t.bat   )
>             < t.bat    (                                  cmd 
> < t.bat )
>             /c t.bat   (                                  
> cmd/c t.bat )


have you tried
  EXECUTABLE=t.bat
or
  EXECUTABLE=cmd.exe
  ARGUMENTS=t.bat
  INPUT=t.bat

[or minor variations on spellings above]

cheers

JK