如何用点设置环境?

如何用点设置环境?

我尝试通过导出和设置环境来执行此操作,但没有效果。怎么办?

例如

~/directory$ export a.home=1 
bash: export: `a.home=1': not a valid identifier

答案1

实际上一位同事刚刚问我,我找到了一个解决方法 - 使用

env var.with.dots=value command

答案2

点不是 shell 标识符中的有效字符。
因此答案是“您无法执行所要求的操作”:

   name   A word consisting only of  alphanumeric  characters  and  under-
          scores,  and beginning with an alphabetic character or an under-
          score.  Also referred to as an identifier.

相关内容