What is the use of "grep" command?

1 comment:

  1. grep- Unix command used to search specified text.
    cat Employee | grep Bhuvnesh.
    In the File 'Employee'. THe outut of the above command will show all the lines which contains Bhuvnesh. It is case sensitive. grep -i Bhuvnesh > For case insensitive.

    ReplyDelete