From f7755ef0d20112be07ad289025b42b83f7067a6b Mon Sep 17 00:00:00 2001 From: Uggla Date: Tue, 11 Aug 2015 13:30:24 +0200 Subject: [PATCH] Add vimdiff and sdiff command. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 10ea84e..8d0b553 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,9 @@ Notes: - If you ever need to write a tab literal in a command line in Bash (e.g. for the -t argument to sort), press **ctrl-v** **[Tab]** or write `$'\t'` (the latter is better as you can copy/paste it). -- The standard tools for patching source code are `diff` and `patch`. See also `diffstat` for summary statistics of a diff. Note `diff -r` works for entire directories. Use `diff -r tree1 tree2 | diffstat` for a summary of changes. +- The standard tools for patching source code are `diff` and `patch`. See also `diffstat` for summary statistics of a diff and `sdiff` easier to read diff. Note `diff -r` works for entire directories. Use `diff -r tree1 tree2 | diffstat` for a summary of changes. + +- Use `vimdiff` to compare and edit files. Really efficient ! - For binary files, use `hd` for simple hex dumps and `bvi` for binary editing.