我试图写一个bash脚本,它将处理一个文件列表,其名称在输入文件中每行存储一个,
find . -type f -mtime +15 > /tmp/filelist.txt for F in $(cat /tmp/filelist.txt) ; do ... done;
我的问题是filelist.txt中的文件名可能包含空格,因此上面的剪切将会扩展该行
my text file.txt
使用阅读:
原文链接:https://www.f2er.com/bash/388440.htmlwhile read F ; do echo $F done </tmp/filelist.txt
或者使用IFS更改shell如何分隔列表:
OLDIFS=$IFS IFS=" " for F in $(cat /tmp/filelist.txt) ; do echo $F done IFS=$OLDIFS
或者(如@tangens建议的),将循环的正文转换为单独的脚本,然后使用find的-exec选项来运行,如果对于直接找到的每个文件。