vote up 2 vote down star

In tcsh, I have the following simple script working:

#!/bin/tcsh
setenv X_ROOT /some/specified/path

setenv XDB    ${X_ROOT}/db
setenv PATH   ${X_ROOT}/bin:${PATH}

xrun -d xdb1 -i $1 > $2

My question is, what is the equivalent to the tcsh setenv function in bash? Is there a direct analog? The environment variables are for locating the executable.

UPDATE: Thanks everyone for your help! I'd been trying to figure this out for quite a while.

flag

4 Answers

vote up 3 vote down check

export VAR=value will set VAR to value. Enclose it in single quotes if you want spaces, like export VAR='my val'. If you want the variable to be interpolated, use double quotes, like export VAR="$MY_OTHER_VAR".

link|flag
vote up 3 vote down

The reason people often suggest writing

VAR=value
export VAR

instead of the shorter

export VAR=value

is that the longer form works in more different shells than the short form. If you know you're dealing with bash, either works fine, of course.

link|flag
vote up 2 vote down

VAR=value sets VAR to value.

After that export VAR will give it to child processes too.

export VAR=value is a shorthand doing both.

link|flag
doesn't it give it to parent processes, not childs? If a shell script does an export, then the shell I invoked it with has that variable, IIRC. – rmeador Oct 24 '08 at 19:03
No. "are marked for automatic export to the environment of subsequently executed commands.", meaning child processes executed after the export. – iny Oct 24 '08 at 19:09
out of curiousity, where is that citation from? – pbh101 Oct 24 '08 at 21:41
It is from bash command help export. – iny Oct 25 '08 at 4:00
vote up 3 vote down

I think you're looking for export - though I could be wrong.. I've never played with tcsh before. Use the following syntax:

export VARIABLE=value
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.