在 Linux 中,可以使用命令行工具进行批量修改不同文件名。以下是几种常见的方法:
使用 mv
命令和通配符:
mv 原文件名模式 新文件名模式
例如,将所有以 .txt
结尾的文件名中的 old
替换为 new
:
mv *old*.txt *new*.txt
使用 rename
命令:
rename 's/原字符串/新字符串/' 文件名模式
例如,将所有以 .txt
结尾的文件名中的 old
替换为 new
:
rename 's/old/new/' *.txt
使用 find
命令结合 mv
命令:
find 路径 -name "文件名模式" -exec mv {} 新文件名 \;
例如,将 /path/to/files
路径下所有以 .txt
结尾的文件名中的 old
替换为 new
:
find /path/to/files -name "*.txt" -exec mv {} {}new \;
请注意,以上命令都需要根据实际需求进行修改。在执行命令之前,建议先进行备份操作,以防止意外情况发生。