escaping hifen
FredVal opened this issue · 2 comments
FredVal commented
I'm trying to trim minified files that have "-min" at the the end of their name.
i'm using this command: renamer -d --find "-min" *
the problem is renamer is taking -m
as an option and obviously fails with unkown option error.
I've tried to escape the hiphen with ^
but it doesnt work...
75lb commented
try renamer -d --find=-min *
FredVal commented
It works!
Thanks!