Commit 27c225e8 authored by Guido van Rossum's avatar Guido van Rossum

Add the specific sed statement to recover the second output file to

the comments.
parent b1b4f945
......@@ -6,7 +6,6 @@
# ndiff file1 file2 -- a human-friendly file differencer.
# $Revision$
# $NoKeywords: $
# SequenceMatcher tries to compute a "human-friendly diff" between
# two sequences (chiefly picturing a file as a sequence of lines,
......@@ -52,6 +51,12 @@
# 3) Lines beginning with "? " attempt to guide the eye to intraline
# differences, and were not present in either input file.
#
# COROLLARY:
# On Unix, the second file can be recovered by piping the output through
# sed -n '/^[+ ] /s/^..//p'
# Modifications to recover the first file are left as an exercise for
# the reader.
#
# NOTE on junk: the module-level names
# IS_LINE_JUNK
# IS_CHARACTER_JUNK
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment