![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to negate grep result? | mmdawg | Shell Programming and Scripting | 4 | 05-05-2008 05:24 AM |
| diaplaying the grep result | rag84dec | Shell Programming and Scripting | 1 | 03-26-2008 11:37 PM |
| grep to handle a 0 result | ocelot | UNIX for Dummies Questions & Answers | 6 | 02-05-2007 08:19 AM |
| To have a numeric result from grep | Hak Dee | UNIX for Dummies Questions & Answers | 2 | 08-07-2006 04:26 AM |
| append esc string | beilstwh | Shell Programming and Scripting | 2 | 05-11-2005 10:33 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
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 |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Try:
Code:
iostat -En|awk '/Vendor/ && !/DV/ && !a[$1]++{print "Disk "$1 $2}'
|
|
#3
|
|||
|
|||
|
append_vendor=Disk`iostat -En | grep Vendor | grep -v DV | awk '{print $1 $2}' | sort -u`
echo $append_vendor append_vendor would have DiskVendor |
|
#4
|
||||
|
||||
|
nua that's a perfect example of Useless Use of Grep + sort + echo....
|
|
#5
|
|||
|
|||
|
hi,
bash$ iostat -En|awk '/Vendor/ && !/DV/ && !a[$1]++{print "Disk "$1 $2}' awk: syntax error near line 1 awk: bailing out near line 1 any idea please? thanks. |
|
#6
|
||||
|
||||
|
hi, could u post the result of the following command:
Code:
uname -a Code:
iostat -En|awk '/Vendor/ && !/DV/ && !a[$2]++{print "Disk "$1 $2}'
|
|
#7
|
|||
|
|||
|
same result for the 2nd command
I am using Solaris 8 and 10 Also note that this works perfectly: iostat -En|awk '/Vendor/ && !/DV/ {print "Disk "$1 $2}' |
|||
| Google The UNIX and Linux Forums |