Hi, I have to create a file.job that execute a command like this: cmd -p xxx -q yyy My question is...How do I set the condor file job? How I have to set Arguments option? I have tried with one argument in this mode: ######################################################## # # cmd -r fileinput.txt # ######################################################## Universe = vanilla Executable = cmd Arguments= -r Input = fileinput.txt transfer_input_files = file1 , file2, file3 should_transfer_files=YES when_to_transfer_output = ON_EXIT Log = file.log Output = out.txt Error = error.log Queue Thanks a lot. |