我有一些包含文件路径的变量,并且在脚本中使用双引号进行转义,以使路径不会被砍掉。在下面的代码中,变量位于命令内,该命令被反引号包围-您知道如何确保我的变量不会被砍掉吗?似乎双引号被忽略了。
`if [ `ls "${local_export_location}"/*.csv | wc -l` -ne 0 ]; then`
结果:切碎的路径
Export jobs commit changes to stash
Move file to Stash: C:/Program
cp: -r not specified; omitting directory 'C:/Program'
Move file to Stash: Files
cp: cannot stat 'Files': No such file or directory
很抱歉,这是一个愚蠢的问题,还在学习...