How to do a mass rename?

前端 未结 11 2029
被撕碎了的回忆
被撕碎了的回忆 2020-11-27 06:23

I need to rename files names like this

transform.php?dappName=Test&transformer=YAML&v_id=XXXXX

to just this

XXXXX.t         


        
11条回答
  •  执笔经年
    2020-11-27 06:51

    vimv lets you rename multiple files using Vim's text editing capabilities.

    Entering vimv opens a Vim window which lists down all files and you can do pattern matching, visual select, etc to edit the names. After you exit Vim, the files will be renamed.

    [Disclaimer: I'm the author of the tool]

提交回复
热议问题