原创 Play shell中大小寫的轉換

#!/bin/shfor f in * do mv $f `echo $f | tr "[:upper:]" "[:lower:]" ` done--