Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有很多目录,例如 Tmp/a-1,a-2...直到 a-1000。 每个 TMP 目录都包含名为 log 的文件。 因此我必须进入每个目录并将名为 log 的文件更改为 log_orig。 如何通过脚本做到这一点?
find -name log -type f -exec mv {} {}_orig \;会做(只要您log在其他目录中没有您不想触摸的文件)
find -name log -type f -exec mv {} {}_orig \;
log