Ubuntu 终端使用通配符删除多个部分文件

发布于 2025-01-11 04:29:36 字数 1549 浏览 0 评论 0原文

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

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

发布评论

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

评论(1

花之痕靓丽 2025-01-18 04:29:36

我认为这里的问题是星号 (*) 是由当前用户解决的,即在成为超级用户之前。因此,它什么也解析不了,因为当前用户甚至无法读取该目录。

通过首先成为超级用户,然后正常执行所有操作来解决此问题:

sudo -i
cd /var/lib/tomcat8/logs/archived/
rm remove_me.2022.*

I believe the issue here is that the asterisk (*) is resolved by the current user, i.e., before becoming the superuser. Hence, it resolves to nothing, because the current user is not able to even read that directory.

Solve this by becoming superuser first, and then doing everything normally:

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