Reputation: 681
I want to rename all files with add some word example I have file name test I want to append linux using command I find one command that is rename but that not work properly. So give me idea.
Upvotes: 1
Views: 291
Reputation: 355
Try this..
rename -v 's/(.*)/\1doc/' *
Upvotes: 3