批量重命名目录中的文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量重命名目录中的文件相关的知识,希望对你有一定的参考价值。

test with echo instead of mv
example removes spaces after dots, replaces spaces with _, removes ' , and -, and finally lowercases filenames
  1. for F in * ; do NF=`echo $F | perl -lne "s/ /_/g; s/._/./g; s/[',-]//g; print lc"` ; mv "$F" "$NF" ; done

以上是关于批量重命名目录中的文件的主要内容,如果未能解决你的问题,请参考以下文章

Bat批处理:批量重命名包含指定名称文件夹里的指定文件

批量重命名文件

批量重命名

Powershell 批量重命名文件

批量重命名文件

DOS按规则批量重命名所有(子)目录下文件