How do I Remove Specific Characters From File Names Using BASH

前端 未结 5 1448
小鲜肉
小鲜肉 2020-12-23 01:52

I have a lot of files that have a shared pattern in their name that I would like to remove. For example I have the files, \"a_file000.tga\" and \"another_file000.tga\". I

5条回答
  •  悲&欢浪女
    2020-12-23 02:40

    A non-bash solution, since I know two speedy posters have already covered that:

    There's an excellent short perl program called rename which is installed by default on some systems (others have a less useful rename program). It lets you use perl regex for your renaming, e.g:

    rename 's/000//' *000*.tga
    

提交回复
热议问题