📅  最后修改于: 2022-03-11 14:50:18.486000             🧑  作者: Mango
You can not have spaces around the '=' when assigning a variable
Bash will interpret it as a command with '=' and something else as
arguments for that command.
Example:
STR = 'foo' will not work
STR='foo' will work