xargs 实现多文件过滤查找(xargs grep)

  1. find . -type f -name ‘*’ | xargs grep -i ‘nr’
    find到多个文件,从文件中过滤’NR’关键字

  2. ls | xargs grep -i ‘Line’
    ls到多个文件,从文件中过滤’Line’关键字

你可能感兴趣的:(Linux)