userDepth Asked: 2020-07-31 03:15:35 +0800 CST2020-07-31 03:15:35 +0800 CST 2020-07-31 03:15:35 +0800 CST 如何使用查找命令和过滤错误消息 772 我正在运行这个命令:find / | grep corectrl | grep 日志 而且我收到很多权限被拒绝错误,我想将 stderr 发送到 null find stdout 1 个回答 Voted Best Answer waltinator 2020-07-31T07:46:37+08:002020-07-31T07:46:37+08:00 可以通过附加2>/dev/null到find命令(读取 man bash)来重定向 STDERR,因此: find / 2>/dev/null | ... 但是,您的命令的其余部分不是最理想的。阅读man find, find / -type f -name 'corectl.log' -print 或者,如果文件是昨天或更早创建的,请阅读man locate, locate corectl.log
可以通过附加
2>/dev/null
到find
命令(读取man bash
)来重定向 STDERR,因此:但是,您的命令的其余部分不是最理想的。阅读
man find
,或者,如果文件是昨天或更早创建的,请阅读
man locate
,