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 -->
  #1 (permalink)  
Old 04-28-2008
karthikn7974's Avatar
karthikn7974 karthikn7974 is offline VIP Member  
Supporter
  
 

Join Date: Jul 2007
Location: Singapore
Posts: 58
using awk != parameter

Hi all,

I am having the below file log.txt

Code:
1 aaa 111 @@@
2 bbb 222 ###
14 ccc 333 $$$
using awk '$1!=1 || $1!=14 {print $1" " $2}' log.txt

gets the below output

Code:
1  aaa
2  bbb
14  ccc
any one can sort what the problem is ?

thanks in advance