unix find 命令结果中的权限问题
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是在问如何“关闭”这些错误吗?因为如果是这样的话,它是这样完成的:
这会将 stderr 重定向到 /dev/null 所以你不会看到它,只留下结果。
Are you asking how to "turn off" the errors? Because if so it's done like this:
This redirects stderr to /dev/null so you won't see it, leaving you with just the results.
2>
将标准错误重定向到/dev/null
。2>
redirecting the standard error into/dev/null
.