How do I do a one way diff in Linux?
Normal behavior of diff:
Normally, diff will tell you all the differences between a two files. For e
diff A B|grep '^<'|awk '{print $2}'
grep '^<' means select rows start with <
grep '^<'
awk '{print $2}' means select the second column
awk '{print $2}'