Patching
On 17 February 2010 in TechBetter reference: http://www.thegeekstuff.com/2014/12/patch-command-examples/
yum install patch
To create patch:
diff -crB OriginalFolder ModifiedFolder > folder.patch
-c: context
-r: recursive (multiple level dir)
-B: ignore blank lines
To apply patch:
(dry run first, at target folder – to check for any error)
patch --dry-run -p1 -i folder.patch
If dry run success, do real patching:
patch -p1 -i folder.patch

Monkey patch
Related posts:
-
Aegisub 2.1.8 Fedora 12 RPM
-
PHP Data Validation
-
Gnome window compositing
-
How to implement MySQL database migration feature
-
Titanium app components interaction using events and callbacks
-
PostgreSQL on Fedora
-
DataContractJsonSerializer missing assembly reference
-
Enable x86 libs in production build Titanium app
-
Load nib file in Titanium module iOS
-
ScrollableView in ListView
Filed under Tech with tags Patch
Leave a Reply