The UNIX and Linux Forums  


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 -->
  #3 (permalink)  
Old 03-18-2008
era
Guest
  
 

Posts: n/a
Bits: 0 [Banking]
And of course, *bling*, this:

Code:
grep someproduct| awk '{print \$$1}'
... gets you the prestigious "useless use of grep | awk" award.

Code:
awk '/someproduct/ { print \$$1}'