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 -->
  #1 (permalink)  
Old 03-19-2008
melanie_pfefer melanie_pfefer is offline
Registered User
  
 

Join Date: Nov 2006
Posts: 234
append a string to a grep result

hello,

iostat -En | grep Vendor | grep -v DV | awk '{print $1 $2}' | sort -u

returns

Vendor:HP

I want to append Disk to it. i.e.:

Disk Vendor:HP
how to do that?
thanks