Reputation: 6418
I want some files that end with .png to end with -sm.png.
.png
-sm.png
I tried with rename .png -sm.png *.png but it failed with invalid option -- 'm'.
rename .png -sm.png *.png
invalid option -- 'm'
How can I do it?
Upvotes: 2
Views: 65
Reputation: 5092
Try this method
rename 's/.png/-sm.png/' *
Upvotes: 3