Advertisement
hakonhagland

a.awk

Mar 18th, 2014
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. NR==FNR {
  2. a[$0]++
  3. next
  4. }
  5. FNR>1{
  6. if ($3 in a)
  7. print $3
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement