我正在尝试获取驻留在一个文件夹中的所有文件,并且文件名有空格,例如
1)File Test 050791.xml
我正在使用下面的命令获取
export srcfileTimeCheck="$(find $dir -type f -mtime +1)"
但这个命令给了我类似的错误
find: can not stat File
find: can not stat Test
find: can not stat 050791.xml
请帮助我如何找到所有也有空间的文件。注:我已经尝试过
1) xrags -0 -I '{}'
答案1
你的变量名用词不当:)
为了解决这个问题,请将变量用双引号引起来。
export srcfileTimeCheck="$(find "$dir" -type f -mtime +1)"