From ccba2ed21ca9545beeb702b32abc69a97ebd081e Mon Sep 17 00:00:00 2001 From: mudongliang Date: Sun, 20 Mar 2016 21:08:10 -0400 Subject: [PATCH] modify hexedit to binary editing --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e580ff2..12e8e5f 100644 --- a/README.md +++ b/README.md @@ -255,7 +255,7 @@ mkdir empty && rsync -r --delete empty/ some-dir && rmdir some-dir - The standard tools for patching source code are `diff` and `patch`. See also `diffstat` for summary statistics of a diff and `sdiff` for a side-by-side 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. -- For binary files, use `hd`, `hexdump`, `hexedit` or `xxd` for simple hex dumps and `bvi` or `biew` for binary editing. +- For binary files, use `hd`, `hexdump` or `xxd` for simple hex dumps and `bvi`, `hexedit` or `biew` for binary editing. - Also for binary files, `strings` (plus `grep`, etc.) lets you find bits of text.