Docu review done: Mon 06 May 2024 09:27:22 AM CEST
Creating patches
Command | Description |
---|---|
diff -u <original file> <file wich changes for your patch> > <patchfilename> | creates a patch file |
$ diff -u /usr/bin/pass /usr/bin/pass_new > $HOME/pass.patch
Applying patches
Command | Description |
---|---|
patch < <patchfilename> | imports changes to file |
$ patch < $HOME/pass.patch