Print grep command output without seperator

I am working with grep command and found two dashes ( — ) in output. How can I print grep command output without two dashes ( — ) that is also called separator. Answer : To print grep command output without separator , you can use the option –no-group-separator with grep command. How to print … Read more

grep command to find multiple strings or keyword from file

This post explains about grep command to find multiple strings or keyword from file. In Linux or Unix like operating system, the grep command utility is widely used. Grep is a command-line utility for searching plain-text data sets for lines matching a regular expression. Grep was originally developed for the Unix operating system, but is … Read more