如何用點設定 env?

如何用點設定 env?

我嘗試使用匯出和設定環境來做到這一點,但它不起作用。怎麼做?

例如

~/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.

相關內容