Bisix

filediff

Mar 22nd, 2021 (edited)
500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.15 KB | None | 0 0
  1. comm -13 <(sort file_1) <(sort file_2)
  2.  
  3. # diff from both files in single column
  4. comm -3 <(sort file_1) <(sort file_2) |  awk -F \\x09 '{print $NF}'
  5.  
Add Comment
Please, Sign In to add comment