Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Condor-users] Changing Shells in Condor
- Date: Tue, 21 Feb 2006 15:27:53 -0600
- From: Zachary Miller <zmiller@xxxxxxxxxxx>
- Subject: Re: [Condor-users] Changing Shells in Condor
On Tue, Feb 21, 2006 at 03:24:11PM -0600, Christina Taylor wrote:
> Hi,
>
> Does anyone know how to change shells within a condor submit file? My
> login shell is TSH. However, I need to switch to bash to run a series
> of scripts that I obtained.
the simplest would be to use a wrapper script around your job that starts with
the line:
#!/bin/bash
then the wrapper script is your Executable, and the real executable needs to
be added to the transfer_input_files.
cheers,
-zach