批量重命名目录中的文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量重命名目录中的文件相关的知识,希望对你有一定的参考价值。
test with echo instead of mvexample removes spaces after dots, replaces spaces with _, removes ' , and -, and finally lowercases filenames
for F in * ; do NF=`echo $F | perl -lne "s/ /_/g; s/._/./g; s/[',-]//g; print lc"` ; mv "$F" "$NF" ; done
以上是关于批量重命名目录中的文件的主要内容,如果未能解决你的问题,请参考以下文章