当我尝试这样做时...
$ export my_path='/my/path\ with\ spaces/file'
$ echo $my_path`
/my/path\ with\ spaces/file
有用。
但我想这样做..
$ echo $my_variable
my_path='/my/path\ with\ spaces/file'
$ export $my_variable
-bash: export: `with\': not a valid identifier
-bash: export: `spaces/file'': not a valid identifier
这是我得到的错误。有没有办法处理导出的变量的值.. [[ 注意:如果路径没有空格,它可以完美地工作!!]]