Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 591 Bytes

README.md

File metadata and controls

34 lines (22 loc) · 591 Bytes

README

Example textual diffing tools.

REF: Binary Diffing Examples here

VSCode

code --diff file1.txt file1_changed.txt

Beyond Compare

bcompare file1.txt file1_changed.txt

diff

# changed (detects diff)
diff file1.txt file1_changed.txt

# extended test (detects diff)
diff file1.txt file1_extended.txt

# truncated test (detects diff)
diff file1.txt file1_truncated.txt

Resources

  • Beyond Compare Command Line Reference here