여러 파일에서 문자열을 그 리핑하지만 원하지 않는 부작용 중 하나는 출력을 미리 나타내는 파일 이름입니다. 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.
cat lpNet *을 사용하여 지금 문제를 해결했습니다. grep lp 나는 동일한 효과를 갖는 더 효율적인 경로가 있는지 궁금합니다.