ドットを使用して env を設定するにはどうすればいいですか?

ドットを使用して env を設定するにはどうすればいいですか?

export と set env を使ってそれを実行しようとしましたが、うまくいきませんでした。どうすればいいですか?

例えば

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

答え1

実は同僚が私に尋ねたところ、回避策を見つけました。

env var.with.dots=value command

答え2

ドットはシェル識別子では有効な文字ではありません。
したがって、答えは「要求したことは実行できません」です。

   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.

関連情報