我们如何在shell脚本的目录名中获得包含空格的完整文件路径

时间:2017-02-01 06:04:37

标签: shell sh

我正在监视带有inotify的文件夹和在监视文件夹上创建的新文件,我需要使用完整的文件路径调用php脚本。

inotifywait -m -r /mnt/test -e create -e moved_to |
while read path action file; do
echo "$path"
echo "$path$file"
done

如果我在“New Folder / test.jpg”中放置一个文件夹“New Folder”和一个文件,该路径只返回“/ mnt / test / New”,而我期待“/ mnt / test / New File / ”。有了这个$ path $ file的结果是“/mnt/test/Newtest.jpg”,而我期待“/ mnt / test / New Folder / test.jpg”

0 个答案:

没有答案