How to get diff to report summary of new, changed and deleted lines

前端 未结 4 1472
醉酒成梦
醉酒成梦 2021-02-06 20:39

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 s

4条回答
  •  春和景丽
    2021-02-06 21:20

    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(-)
    

提交回复
热议问题