Chase’s Words of patch Wisdom

If you have a patch that is created with:
sh$ diff -Nur [old-src-dir] [new-src-dir] > my-patch
you apply that patch by typing:
sh$ ls my-patch
my-patch
sh$ cd [src-dir]/
sh$ patch -p1 < ../my-patch
--- Short and sweet