grep : Linux Command
Searching Inside the File/Files in Linux grep prints the matching lines Let’s have some example to understand this: Example 1: To Search for the given string in a single file Let me create a file eduguru.sh. $ cat eduguru.sh #!/bin/bash fun() echo “This is a test.” # Terminate our shell script with success message exit 1 fun() Now … Read more