=:这不是标识符

时间:2011-03-22 18:54:25

标签: shell unix scripting ksh

我正在尝试使用

在Korn Shell(ksh)脚本中设置环境
 export DB_URL = jdbc@xyz.com

但我得到了=: This is not an identifier

请协助。

1 个答案:

答案 0 :(得分:8)

不要在变量名,等号及其值之间加上空格。

export THIS=that

或者

THIS=that; export THIS