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

[Condor-users] a vanilla job



Hi ,
I am using the following submission file for condor:

executable=/bin/sh
arguments=-c date +%s
output=res.out
error=res.err
log=res.log
universe=vanilla
notification=never
queue



and I 'd expect a result like
1088427848


but I obtain : Mon Jun 28 14:58:00 CEST 2004


In effect condor jobs seem to parse only the 1st argument: It really execute a process /bin/sh -c date ---> Mon Jun 28 14:58:00 CEST 2004


and not
/bin/sh -c date  +%s --->  1088427848


Have you an idea to make condor able to parse all the subsequent arguments for the vanilla jobs? I am an inexper condor user