我需要在使用automator的文件夹之后重命名多个文件。例如index.html重命名为folder1.html
我大约有900个文件夹,其中每个文件都名为index.html。
答案 0 :(得分:0)
这很简单,就像使用Terminal:
for f in `ls -1`; do
if [[ -f $f/$index.html ]]; then
cp $f/index.html $f/$f.html;
fi;
done
请注意,我在这里使用cp命令,因此它将复制index.html文件而不是移动它。只是以防万一...:)
您可以将其添加到Automator中的“运行Shell脚本”操作中。只需确保将自动化脚本保存在包含所有子文件夹的文件夹中即可。