by arm on 9/17/21, 1:48 AM with 4 comments
by herne on 9/20/21, 9:43 PM
justA() { comm -23 <(sort -u "$1") <(sort -u "$2"); }
justB() { comm -13 <(sort -u "$1") <(sort -u "$2"); }
bothAB() { comm -12 <(sort -u "$1") <(sort -u "$2"); }
by seiferteric on 9/21/21, 12:13 AM
by rstuart4133 on 9/20/21, 2:57 AM
vim -d file1 file2
:%!sort | uniq -c
:wincmd l
:%!sort | uniq -c