从 Shell:删除所有带撇号的文件

发布于 2024-08-17 00:18:03 字数 216 浏览 10 评论 0原文

如何删除带有撇号的文件夹中的所有文件?

例如:

贝尔德/的隧道.jpg

巴赫的鸟.jpg

这 // 不好.png

我希望删除所有这些文件,但任何没有撇号的文件都保持完整,例如:

这个不错.jpg 不删除.png

How do I delete all files in a folder that has an apostrophe?

for example:

Baird/'s Tunnel.jpg

Bach/'s Birds.jpg

This isn//'t good.png

I would like all those files deleted but anything that doesn't have an apostrophe to remain intact, like:

this is good.jpg
donotdelete.png

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

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

发布评论

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

评论(3

无人接听 2024-08-24 00:18:03

在 sh 你可以做

rm *\'*

In sh you could do

rm *\'*
孤千羽 2024-08-24 00:18:03

您可以使用 find 命令:

find 。 -name "*'*" -delete

正如 @Bryan 在他的评论中指出的,这将删除当前目录中的所有文件和所有子目录。如果您不想下降目录,请使用:

find 。 -name "*'*" -maxdepth 1 -delete

使 find 保留在当前目录中。

You can use the find command:

find . -name "*'*" -delete

As @Bryan pointed in his comment, this will delete all files in the current directory and all subdirectories. If you don't want to descend the directories use:

find . -name "*'*" -maxdepth 1 -delete

which makes find stay in the current directory.

浅唱々樱花落 2024-08-24 00:18:03

GNU 查找

find /path/ -type f -name "*[']*" -exec rm {} +;

GNU find

find /path/ -type f -name "*[']*" -exec rm {} +;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文