gpt4 book ai didi

linux - 在 linux 或 windows 中更改目录中的所有文件名和扩展名

转载 作者:IT王子 更新时间:2023-10-29 01:11:56 25 4
gpt4 key购买 nike

我有上千个这样的文件扩展名

3_bedroom_villas_in_chennai.html__201308050010_
3_bedroom_villas_in_chennai.html__201308080012_
3_bedroom_villas_in_chennai.html__201308100012_
3_bedroom_villas_in_chennai.html__201308110034_ and so on.....

在一个目录中。我想将所有这些更改为以下内容

3_bedroom_villas_in_chennai__201308050010_.html
3_bedroom_villas_in_chennai__201308080012_.html
3_bedroom_villas_in_chennai__201308100012_.html
3_bedroom_villas_in_chennai__201308110034_.html

当我尝试使用以下命令在 Windows 中执行此操作时

ren *.* *.html

我得到了以下信息

A duplicate file name exists, or the file
cannot be found.
A duplicate file name exists, or the file
cannot be found.
A duplicate file name exists, or the file
cannot be found.
A duplicate file name exists, or the file
cannot be found. and so on...

因为我知道它会尝试将所有内容更改为单个文件名,例如

3_bedroom_villas_in_chennai.html and so on... 

有什么方法可以在 Windows 或 Linux 上执行此操作??

最佳答案

Linux 中:

ls | xargs -I % mv % %.html

ls 命令输出通过管道传输到 xargs,xargs 将所有 %(在 mv 之后)替换为来自 ls< 的输入

此外,如果您想递归遍历所有子目录,您可能需要使用:

find . -type f | xargs -I % mv % %.html

Windows 中:

for /r %x in (*) do ren "%x" *.txt

关于linux - 在 linux 或 windows 中更改目录中的所有文件名和扩展名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18887597/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com