Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

nevada

« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS 

diff

diff two directories
diff <dir1> <dir2>

patching source

Making Patch -- to represent the addition of a new file, diff it against /dev/null.
diff -Naur test.old test.cpp > test.patch

Apply Patch
patch test.cpp test.patch

Undo Patch
patch -R test.cpp test.patch
« Newer Snippets
Older Snippets »
Showing 1-3 of 3 total  RSS