本文共 204 字,大约阅读时间需要 1 分钟。
1 2 3 4 | for i in ` ls *.html`; do #rename "linux" "test" $file mv $i ` echo $i | sed 's#test#linux#g' ` done |