使用shell进行大小写转换
使用shell进行大小写转换
大写转小写
for f in *; do rename $f echo $f | tr "[:upper:]" "[:lower:]"
$f; done
小写转大写
for f in *; do rename $f echo $f | tr "[:lower:]" "[:upper:]"
$f; done
Keep it simple, stupid
使用shell进行大小写转换
大写转小写
for f in *; do rename $f echo $f | tr "[:upper:]" "[:lower:]"
$f; done
小写转大写
for f in *; do rename $f echo $f | tr "[:lower:]" "[:upper:]"
$f; done
Copyright © 2010-2024 4Aiur All rights reserved.
This site is using the Desk Mess Mirrored theme, v2.5, from BuyNowShop.com.