Skip to content
Advertisement

why does grep works when used as a variable and does not when used as a function in linux shell script?

I am trying to use grep as a variable and a function in a bash shell script. I get the desired output when grep is used as an variable. I do not get the desired output when grep is used as an function.

The script used for grep as a variable is as below:

JavaScript

the out put when we run the script is

JavaScript

The script used for grep in function is as below:

JavaScript

the out put when we run the script is

JavaScript

Could someone point out what has gone wrong here? Why is grep when used as function not providing desired output?

Advertisement

Answer

Your both programs are comparing “grep” with “0” not the output of the grep command. Also -c option returns the number of lines matched.

Check the following code it works with grep as function. But as grep is as a function you will need to call original grep i.e. command with complete path else it will go in an infinite loop. Send output to /dev/null and process on command execution status.

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement