I tried doing that with export and set env, but it did not work. how to do it?
for example
~/directory$ export a.home=1
bash: export: `a.home=1': not a valid identifier
I tried doing that with export and set env, but it did not work. how to do it?
for example
~/directory$ export a.home=1
bash: export: `a.home=1': not a valid identifier
Actually a colleague just asked me and I found a work-around - use
The dot is not a valid character in a shell identifier.
So the answer is "you cannot do what you ask":