Como se simula a antiga funcionalidade unix grep -S strict no linux

2

Estou mostrando a saída de um comando e desejo retornar apenas resultados específicos e rigorosos.

Eu lembro que uma iteração do grep tinha uma opção estrita -s / --strict .

Por exemplo, grep -s bytes só retornaria entradas que mencionassem a palavra "bytes" e nem todas as palavras que contêm bytes, como "megabytes", "kilobytes", etc.

    
por Nathan Milford 19.05.2009 / 17:23

1 resposta

7
   -w, --word-regexp
          Select  only those lines containing matches that form whole
          words.  The test is that the matching
          substring must either be at the beginning of the line, or 
          preceded  by  a  non-word  constituent
          character.   Similarly,  it  must be either at the end of the
          line or followed by a non-word con-
          stituent character.  Word-constituent characters are
          letters, digits, and the underscore.
    
por 19.05.2009 / 17:26