• 博客园logo
  • 会员
  • 周边
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
白_胖_子
Linux学习的生活就是这么朴实无华且枯燥
博客园    首页    新随笔    联系   管理    订阅  订阅

rename批量重命名文件

用法:

rename [选项] <表达式> <替换> <文件>...

选项:

  • -v, --verbose explain what is being done

  • -s, --symlink act on the target of symlinks

  • -n, --no-act do not make any changes

  • -o, --no-overwrite don't overwrite existing files

  • -h, --help display this help

  • -V, --version display version

重命名文件。

为所有.conf加上.bak后缀

rename '.conf' '.conf.bak' ./*.conf

去掉.bak后缀

rename '.bak' ' ' ./*.bak
[02:19:54 root@C8-3-55 ~]#mkdir renameTest
[02:20:10 root@C8-3-55 ~]#touch ./renameTest/{a..c}{1..3}.conf
[02:20:35 root@C8-3-55 ~]#rename '.conf' '.conf.bak' ./renameTest/*.conf
[02:21:16 root@C8-3-55 ~]#ll ./renameTest/
总用量 0
-rw-r--r--. 1 root root 0 3月   4 02:20 a1.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 a2.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 a3.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 b1.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 b2.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 b3.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 c1.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 c2.conf.bak
-rw-r--r--. 1 root root 0 3月   4 02:20 c3.conf.bak
[02:21:25 root@C8-3-55 ~]#rename '.bak' ' ' ./renameTest/*.bak
[02:21:53 root@C8-3-55 ~]#ll ./renameTest/
总用量 0
-rw-r--r--. 1 root root 0 3月   4 02:20 'a1.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'a2.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'a3.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'b1.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'b2.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'b3.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'c1.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'c2.conf '
-rw-r--r--. 1 root root 0 3月   4 02:20 'c3.conf '
* * * 胖并快乐着的死肥宅 * * *
posted @ 2021-03-04 15:23  白_胖_子  阅读(272)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3