vote up 0 vote down star

Are the following 2 lines completely equivalent? If not what's the difference? I've seen plently of shellscripts utilize number 1 and was just wondering what it gives you compared with number 2.

  1. typeset TARGET="${XMS_HOME}/common/jxb/config/${RUNGROUP}.${ENV}.properties"
  2. TARGET="${XMS_HOME}/common/jxb/config/${RUNGROUP}.${ENV}.properties"
flag

1 Answer

vote up 1 vote down check

typeset will create a local variable (one which doesn't "leak"). This is useful in functions but I've also seen it being used at the top level of a shell script.

a=0
x() {
    typeset a=1
}
x
echo $a
y() {
    a=2
}
y
echo $a

will print

0
2

You can also use typeset to create arrays and integers.

link|flag

Your Answer

Get an OpenID
or

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