unix find 命令结果中的权限问题

发布于 2024-11-05 16:22:04 字数 285 浏览 0 评论 0原文

在 Unix 中,
当我执行

$ find . -name 'Export.class' -print

Displays 时,

The file access permissions do not allow the specified action.
find: 0652-081 cannot change directory to </usr/.ibm>:

错误不应显示在控制台中。只需要结果。

In Unix,
when i execute

$ find . -name 'Export.class' -print

Displays,

The file access permissions do not allow the specified action.
find: 0652-081 cannot change directory to </usr/.ibm>:

the errors should not be displayed in console. Only the result is required.

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

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

发布评论

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

评论(2

空袭的梦i 2024-11-12 16:22:04

您是在问如何“关闭”这些错误吗?因为如果是这样的话,它是这样完成的:

$ find . -name 'Export.class' -print 2>/dev/null

这会将 stderr 重定向到 /dev/null 所以你不会看到它,只留下结果。

Are you asking how to "turn off" the errors? Because if so it's done like this:

$ find . -name 'Export.class' -print 2>/dev/null

This redirects stderr to /dev/null so you won't see it, leaving you with just the results.

り繁华旳梦境 2024-11-12 16:22:04
$ find . -name 'Export.class' -print 2>/dev/null

2> 将标准错误重定向到 /dev/null

$ find . -name 'Export.class' -print 2>/dev/null

2> redirecting the standard error into /dev/null.

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