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

Re: [Condor-users] Condor Submit File



On Thu, Feb 16, 2006 at 01:17:21PM +1100, Philip Crawford wrote:
> Sameer,
> Are you transferring the database file? If so, I would try to simply use the
> "." which specifies the current directory as that is where all files are
> transferred to.

that is probably the best idea.


if that doesn't work for your program (maybe it requires full pathnames
or something) you could also make a wrapper script for your job:

  #!/bin/sh
  exec real_executable `pwd`


you would then set in your submit file:

  executable = wrapper_script.sh

and also add real_executable (whatever it is) to your transfer_input_files.


cheers,
-zach