Before rename (of the top RAR file):
http://i32.tinypic.com/2zznwjl.jpg
After rename (of the top RAR file):
http://i26.tinypic.com/p3q5e.jpg
Hope it helps
Code: Select all
rename re, "^(.*)\.(.*)$>$name.$2";How would I integrate it into my existing script?jacky wrote:PS: While waiting for the bugfix which will, I'm sure, be there soon, you can use this instead on your script, should work just fine (as long as the file you rename as an extension) :Code: Select all
rename re, "^(.*)\.(.*)$>$name.$2";
Code: Select all
regexreplace $name, <curitem>, "^.+\\([^\\]+?)\\[^\\]+?.*$", "$1";
rename re, "^(.*)\.(.*)$>$name.$2";Yep, just fixed it. Good little find.ivan wrote:Yes, works perfectly! Thanks a bunch. It's still a little bug though