• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

重命名在bash多个文件

用户头像
it1352
帮助1

问题说明

A.js B.js C.js 某目录下,我想写bash shell中一个命令行来重命名这些文件_A,_B,_C。我怎样才能做到这一点?

I have A.js, B.js, C.js in a certain directory and I want to write a SINGLE command line in bash shell to rename these files _A, _B, _C. How can I do this?

我试过找到-name'* .SH| xargs的-I文件MV文件名前缀的文件.SH ,但它不工作,基本名称的文件.SH不被识别为一个嵌套的命令

I tried find -name '*.sh' | xargs -I file mv file basename file .sh but it doesn't work, basename file .sh isn't recognized as a nested command

正确答案

#1

如何

rename 's/(.*).js/_$1/' *.js

检查您的系统上进行重命名的语法。

Check the syntax for rename on your system.

上面的命令将重命名 A.js _A &安培;等等。

The above command will rename A.js to _A & so on.

如果您想保留的延伸,下面应该有所帮助:

If you want to retain the extension, below should help:

rename 's/(.*)/_$1/' *.js

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcgjjca
系列文章
更多 icon
同类精品
更多 icon
继续加载