Estou recebendo uma string de vários arquivos, mas o efeito colateral indesejado é o nome do arquivo que antecede a saída. Como posso suprimir as saídas do nome do arquivo usando apenas grep?
$ grep -i lp lpNet*
lpNet:This was printed via the internet using the lp command.
lpNet:I believe lp doesnt care what the device is.
lpNet1:This was printed via the internet using the lp command.
lpNet1:I believe lp doesnt care what the device is.
lpNet2:This was printed via the internet using the lp command.
lpNet2:I believe lp doesnt care what the device is.
lpNet3:This was printed via the internet using the lp command.
lpNet3:I believe lp doesnt care what the device is.
Eu resolvi o problema por enquanto usando cat lpNet * | grep lp Estou me perguntando se existe um caminho mais eficiente para ter o mesmo efeito
command-line
bash
grep
cat
j0h
fonte
fonte