<div dir="ltr"><div>Just like Doug and Steve, I am in the camp of "create a shell script, edit, then run it" camp. <br></div><div><br></div><div>It often starts with awk:</div><div><br></div><div>ls *show* | awk '{print "mv ", $1, $1}' > x</div><div><br></div><div>Now x has a skeleton like:</div><div><br></div><div>mv show1 show1</div><div>mv show2 show2</div><div><br></div><div>Then I edit using vim according to what I want (tedious part), then run it. <br></div><div><br></div><div>But now that rename has been pointed out, I think I will try to use that instead. <br></div><div>For one thing, it has -v (shows what is being done), and -n (a dry run mode), which</div><div>should assist significantly with the task of renaming. <br></div><br></div>