递归修改目录与文件名统一为小写的shell脚本

发布时间:2020-05-28编辑:脚本学堂
shell脚本实现递归修改一个目录下的所有文件与子目录名统一为小写,有需要的朋友,建议参考下。

代码如下:
 

复制代码 代码示例:
#!/bin/bash
# modify directory and file
# rename new name
# by http://www.jb200.com
let i=1
max=$(find | sed 's#[^/]##g' | sort -r | head -1 | wc -c)
while [ $i -lt $max ]
 do find -mindepth $i -maxdepth $i -name '*[A-Z]*' | while read file; do mv $file `echo $file|tr 'A-Z' 'a-z'`; done
 let i++
done