Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 bash 中,我可以使用 2>&1 和命令重定向 stderrfind并将其通过管道传送grep到以删除任何Permission denied消息。我如何在 csh 中执行此操作?我收到错误消息Ambiguous output redirect。我已经尝试过这个问题的语法,它给了我描述的错误。
find
grep
Permission denied
Ambiguous output redirect
根据@swdev 在上面的评论中发布的链接,唯一的方法是将其发送到文件,然后grep在您处于 csh 时在该文件上使用。
理论上,您可以使用“!-executable -prune -o ...”来仅输入可访问的目录。