ls | grep -v "//|=/|@/||"
然后用管道输送到反向grep工作? 这个问题似乎不符合质量标准,也许如果我写更多随机的东西 这将是一个质量问题。
答案 0 :(得分:0)
如果这样做,您应该明确添加-F
标志。
ls -F | grep '...'
在我看来,使用find会更优雅:
find . -type f # Recurse into subdirectories.
find . -maxdepth 1 -type f # Do not recurse.