如何使用shell脚本重命名所有文件?

发布于 2024-12-21 19:34:27 字数 229 浏览 0 评论 0原文

我有数百个相同格式的文件。我想通过前六个字符和扩展名来重命名文件。

以下代码提取前 6 个字符...我正在显示它们

     for i in *.png; do echo $i | awk '{ print substr($0, 0, 7 )}'; done

,但无法连接扩展名。有人可以帮忙吗。如果脚本可以用 mv 命令完成就太好了。

谢谢

I have hundreds of file of same format. I want to rename the files by taking the first six characters and the extension.

Following code extracts the first 6 characters... I am displaying them

     for i in *.png; do echo $i | awk '{ print substr($0, 0, 7 )}'; done

I am unable to concat the extension. Could somebody help. It will be great if the script could be completed with mv command.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林散布 2024-12-28 19:34:27

假设每个文件名在扩展名之前至少有六个字符,您可以写

for file in *.png ; do mv "$file" "${file:0:6}.png" ; done

Assuming that every file-name has at least six characters before the extension, you can write

for file in *.png ; do mv "$file" "${file:0:6}.png" ; done
苦笑流年记忆 2024-12-28 19:34:27

如果继续使用 awk,请在循环体外部进行管道传输:

for i in *.png; do echo $i; done |
awk '{ print "mv $0 " substr($0, 0, 7) ".png"}' |
sh -vn

修订后的 awk 会打印 mv 命令。当您对它能够完成正确的工作感到满意时,请将 -vn 替换为 -x (或什么都不替换)。

这几乎适用于任何 shell。如果您专门使用 bash ,那么有内置的字符串操作来完成您需要的工作 - 请参阅 ruakh 是一种可能的技术。还有无数其他选项可供选择;某些系统具有功能强大的rename命令(其他系统具有功能较弱的版本)。

Do the piping outside the loop body, if you continue to use awk:

for i in *.png; do echo $i; done |
awk '{ print "mv $0 " substr($0, 0, 7) ".png"}' |
sh -vn

The revised awk prints the mv commands. When you're happy it is going to do the right job, replace the -vn with -x (or with nothing).

This will work with pretty much any shell. If you're using bash specifically, then there are built-in string manipulations to do the job you need - see the answer by ruakh for one possible technique. There are a myriad other options available; some systems have a capable rename command (others have a less capable version).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文