重命名在bash多个文件 [英] Rename multiple files in bash

查看:135
本文介绍了重命名在bash多个文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

推荐答案

如何

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

这篇关于重命名在bash多个文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆