如果我想对文件执行 ls 就足够了吗?
ls | grep -v "//|=/|@/||"
然后 ls 会通过管道传输到反向 grep 工作吗? 这个问题似乎不符合质量标准,也许如果我写更多随机的东西 这将是一个质量问题。
ls | grep -v "//|=/|@/||"
will ls then piped to a reverse grep work?
This question seems to not meet the quality standards, maybe if i write more random things
it will be a quality question.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果这样做,您应该显式添加
-F
标志。在我看来,使用 find 会更优雅:
If you do this you should explicitly add the
-F
flag.Using find would be more elegant, in my opinion: