标签: bash mv
如何使用shell实用程序mv?
答案 0 :(得分:6)
使用for循环:
for file in *-m.css ; do mv "$file" "${file%-m.css}.css" ; done
使用rename可能不那么详细。
rename