The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 09-28-2005
vino's Avatar
vino vino is offline Forum Staff  
Supporter (in vino veritas)
  
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,798
Before starting off, you should know that the exit status that is printed is the exit status of the last command in the pipeline; i.e. the exit status of grep 'uplink0:1' is the one that is printed.

man grep says
Code:
       Normally, exit status is 0 if selected lines are found and 1 otherwise.
       But the exit status is 2 if an error occurred, unless the -q or --quiet
       or --silent option is used and a selected line is found.
So in your case, grep did find a favorable result and threw the exit status of 0. In the second case, grep threw up nothing. Hence an exit status of 1.

In case you do want to find out the exit status of the commands in the pipeline, look at this post - Pipelining.

vino