Reputation: 408
I need to set "H&M" environment variable in linux for Hybris platform. I am aware of "export" command. How to escape ampersand symbol in linux environment variable?
Upvotes: 0
Views: 164
Reputation: 1783
I don't think this is possible. When I escape it like this:
export H\&M=myValue
I get:
-bash: export: `H&M=myValue': not a valid identifier
Regarding the hybris part of the question: For what is this variable needed?
Upvotes: 1