Guest User

Untitled

a guest
May 23rd, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. $ awk '!x[$0]++'
  2.  
  3. #which is a shorthand for:
  4.  
  5. $ awk ' !seen[$0] { print $0 } 1 { seen[$0]++ }'
Add Comment
Please, Sign In to add comment