Guest User

Untitled

a guest
Sep 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # Sort, print only duplicate fields
  2. cut -c 1-11 MASTER_OLD.xstY | sort -n | uniq -d > out.out.srt.ALL.txt
  3.  
  4. # Sort reverse, print only duplicate fields
  5. cut -c 1-11 MASTER_OLD.xstY | sort -nr | uniq -d > out.out.srt.ALL.txt
  6.  
  7. # Sort normal, print ALL duplicate fields
  8. cut -c 1-11 MASTER_OLD.xstY | sort -n | uniq -D > out.out.srt.ALL.txt
  9.  
  10. # Sort normal, count all duplicate fields.
  11. cut -c 1-11 MASTER_OLD.xstY | sort -n | uniq -c > out.out.srt.ALL.txt
Add Comment
Please, Sign In to add comment