使用bash,如何在目录中递归地包含所有文件名(包括文件夹)中的子字符串“foo”的所有出现,并用’bar’替换它们?
例如,如果当前结构如下所示:
-foo_test - fooo.txt - xfoo - yfoo.h - 1foo.c
运行bash脚本后应该是这样的:
-bar_test - baro.txt - xbar - ybar.h - 1bar.c
这里显示的两种变化使用OPs测试结构正确工作:
原文链接:https://www.f2er.com/bash/388223.htmlfind . -depth -name '*foo*' -execdir bash -c 'mv -i "$1" "${1//foo/bar}"' bash {} \;
或者,如果您有非常大量的文件,并希望运行速度更快:
find . -depth -name '*foo*' -execdir bash -c 'for f; do mv -i "$f" "${f//foo/bar}"; done' bash {} +
编辑:如注释中所述,我早期的回答使用没有使用execdir选项和使用rename的find命令有问题重命名在其名称中包含foo的目录中的文件。如我所建议的,我已经将find命令改为使用-execdir,并且我使用rename命令删除了变体,因为它是非标准命令。