Issue
I’m struggling to see why the following is returning a code of 1.
echo 'Total' | grep -c No
0
So "No" doesn’t exists in "Total". But then looking up its return code I’m seeing it as 1.
echo $?
1
Why is return code showing up as 1? Is there a way to get around this?
Solution
According to man grep
page, -c
flag is for
-c, –count
Suppress normal output; instead print a count of matching lines for each input file.
So what you are seeing is the count of the match and not to be confused with the exit code of the grep
match. The code 1
is because of no lines matching from the input.
Have a look at the other case,
echo 'No' | grep -c No
1
echo $?
0
Also to read on EXIT CODES
on man grep
page,
EXIT STATUS
Normally the exit status is 0 if a line is selected, 1 if no lines were selected, and 2 if an error occurred.
Answered By – Inian
This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0