I want to have summary of difference between two files. Expected output is count of new, deleted and changed lines. Does diff readily provides such output? If not is there any script/utility available which helps in getting the summary.
+1
A:
If you use diff -u it will generate a unified diff that has lines preceded with + and -. If you pipe that output through grep (to get only the + or -) and then to wc you get the counts for the + es and the - es respectively.
lothar
2009-04-20 07:12:09
suyasha
2009-05-07 10:10:06
+2
A:
I think you are looking for diffstat. Simply pipe the output of diff to diffstat and you should get something like this.
include/net/bluetooth/l2cap.h | 6 ++++++
net/bluetooth/l2cap.c | 18 +++++++++---------
2 files changed, 15 insertions(+), 9 deletions(-)
sigjuice
2009-04-20 08:01:56