Hello. On Fri 2003-02-21 at 16:58:47 +0100, [EMAIL PROTECTED] wrote: > Hello > > I got some advise about a particular problem I have. > Since I work with the bash shell and the advise seems to apply to ksh or > csh, I would like to know how to translate the following: > > setenv IMAGINE_HOME /space/imagine/860 > source /space/imagine/860/bin/imagine_environment > > setenv IMAGINE_BATCH_RUN
The bash equivalent is something like
export IMAGINE_HOME=/space/imagine/860
. /space/imagine/860/bin/imagine_environment
export IMAGINE_BATCH_RUN=
(the last line doesn't look to make sense)
> I don't know what this "sourcing" is.
That means to read in a file and interpret it as commands as if you
had typed them yourself. Something like an include.
HTH,
Benjamin.
pgp00000.pgp
Description: PGP signature
