Scoping problems in different shell languages?

2019-03-02 19:09发布

It appears that pdksh and mksh has the scoping implementation I expected.

For example:

readonly x='global'

f() {
  local x
  readonly x='f'
  echo $x
}

g() {
  local x
  readonly x='g'
  echo $x
}

echo $x

f 
g

echo $x

pdksh and mksh produce my expected result:

global
f
g
global

And Bash fails:

line 5: local: x: readonly variable

Dash and Ksh93 failed my expect, too. (I've changed local to typeset in Ksh93's test.)

This seems confusing.

UPDATE: I've edited the question. The question before is not stated in a clear way.

标签: bash shell ksh
1条回答
甜甜的少女心
2楼-- · 2019-03-02 19:42

Bash and Dash don't fail if the global variable is not read only.

Korn (ksh93) doesn't fail only if none of the instances of x are read only.

查看更多
登录 后发表回答