| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
patch
Normally patch is invoked like this:
patch <patchfile |
The full format for invoking patch is:
patch options... [origfile [patchfile]] |
If you do not specify patchfile, or if patchfile is
`-', patch reads the patch (that is, the diff output)
from the standard input.
If you do not specify an input file on the command line, patch
tries to figure out from the leading text (any text in the patch
that comes before the diff output) which file to edit See section 9.4 Multiple Patches in a File.
By default, patch replaces the original input file with the
patched version, after renaming the original file into a backup file
(see section 14.2 Backup File Names, for a description of how patch names backup
files). You can also specify where to put the output with the `-o
output-file' or `--output=output-file' option.
| 14.1 Applying Patches in Other Directories | Changing directory and stripping directories. | |
| 14.2 Backup File Names | Backup file names. | |
| 14.3 Reject File Names | Reject file names. | |
14.4 patch Quoting Style | Quoting file names. | |
| 14.5 Revision Control | Interacting with revision control systems. | |
| 14.6 Patching Time Stamps | Setting the modification and access times of patched files. | |
14.7 Options to patch | Summary table of options to patch. |
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The `-d directory' or `--directory=directory'
option to patch makes directory directory the current
directory for interpreting both file names in the patch file, and file
names given as arguments to other options (such as `-B' and
`-o'). For example, while in a news reading program, you can patch
a file in the `/usr/src/emacs' directory directly from the article
containing the patch like this:
| patch -d /usr/src/emacs |
Sometimes the file names given in a patch contain leading directories,
but you keep your files in a directory different from the one given in
the patch. In those cases, you can use the `-pnumber' or
`--stripnumber' option to set the file name strip count to
number. The strip count tells patch how many slashes,
along with the directory names between them, to strip from the front
of file names. By default, patch strips off all leading
directories, leaving just the base file names, except that when a file
name given in the patch is a relative file name and all of its leading
directories already exist, patch does not strip off the leading
directory. (A relative file name is one that does not start
with a slash.)
patch looks for each file (after any slashes have been stripped)
in the current directory, or if you used the `-d directory'
option, in that directory.
For example, suppose the file name in the patch file is `/gnu/src/emacs/etc/NEWS'. Using `-p' or `-p0' gives the entire file name unmodified, `-p1' gives `gnu/src/emacs/etc/NEWS' (no leading slash), `-p4' gives `etc/NEWS', and not specifying `-p' at all gives `NEWS'.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Normally, patch renames an original input file into a backup file
by appending to its name the extension `.orig', or `~' on
systems that do not support long file names. The `-z
backup-suffix' or `--suffix=backup-suffix' option uses
backup-suffix as the backup extension instead.
Alternately, you can specify the extension for backup files with the
SIMPLE_BACKUP_SUFFIX environment variable, which the options
override.
`--backup-if-mismatch' makes patch create backups for
mismatched files. This is the non-POSIX default.
`--no-backup-if-mismatch' prevents patch from creating
backups for mismatched files. This is the POSIX default.
patch can also create numbered backup files. With this method,
instead of having a single backup of each file, patch makes a
new backup file name each time it patches a file. For example, the
backups of a file named `sink' would be called, successively,
`sink.~1~', `sink.~2~', `sink.~3~', etc.
The `-V backup-style' or
`--version-control=backup-style' option takes as an
argument a method for creating backup file names. You can alternately
control the type of backups that patch makes with the
VERSION_CONTROL environment variable, which the `-V'
option overrides. The VERSION_CONTROL environment variable and
the argument to the `-V' option also recognize synonyms that are
more descriptive. The valid values are listed below; unique
abbreviations are acceptable.
Alternately, you can tell patch to prepend a prefix, such as a
directory name, to produce backup file names. The `-B
backup-prefix' or `--prefix=backup-prefix' option makes
backup files by prepending backup-prefix to them. If you use this
option, patch ignores any `-b' option that you give.
If the backup file already exists, patch creates a new backup
file name by changing the first lowercase letter in the last component
of the file name into uppercase. If there are no more lowercase letters
in the name, it removes the first character from the name. It repeats
this process until it comes up with a backup file name that does not
already exist.
If you specify the output file with the `-o' option, that file is the one that is backed up, not the input file.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
The names for reject files (files containing patches that patch
could not find a place to apply) are normally the name of the output
file with `.rej' appended (or `#' on systems that do not
support long file names).
Alternatively, you can tell patch to place all of the rejected
patches in a single file. The `-r reject-file' or
`--reject-file=reject-file' option uses reject-file as
the reject file name.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
patch Quoting Style `--quoting-style=word' determines how file names are quoted in output. word must be one of:
`shell' is the default.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
-g num or --get=num controls patch's actions when a file is under RCS or SCCS control, and does not exist or is read-only and matches the default version, or when a file is under ClearCase control and does not exist. If num is positive, patch gets (or checks out) the file from the revision control system; if zero, patch ignores RCS, ClearCase, and SCCS and does not get the file; and if negative, patch asks the user whether to get the file. The default value of this option is given by the value of the PATCH_GET environment variable if it is set; if not, the default value is zero if patch is conforming to POSIX, negative otherwise.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
Patch can "fake" the modification time stamps on files it produces,
using the time stamps in context diff headers. This can be useful
with programs such as make which depend on these time stamps to
decide what files need to be rebuilt.
`-T' or `--set-time' sets the modification and access
times of patched files from time stamps given in context diff headers,
assuming that the context diff headers use local time. This option is
not recommended, because patches using local time cannot easily be
used by people in other time zones, and because local time stamps are
ambiguous when local clocks move backwards during daylight-saving time
adjustments.
`-Z' or `--set-utc' sets the modification and access times of patched files from time stamps given in context diff headers, assuming that the context diff headers use Coordinated Universal Time (UTC, often known as GMT). Also see the -T or --set-time option.
The `-Z' or `--set-utc' and `-T' or `--set-time' options normally refrain from setting a file's time if the file's original time does not match the time given in the patch header, or if its contents do not match the patch exactly. However, if the `-f' or `--force option' is given, the file time is set regardless.
Due to the limitations of diff output format, these options cannot update the times of files whose contents have not changed. Also, if you use these options, you should remove (e.g. with make clean) all files that depend on the patched files, so that later invocations of make do not get confused by the patched files' times.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
patch
Here is a summary of all of the options that patch accepts.
Older versions of patch do not accept long-named options or the
`-t', `-E', or `-V' options.
Multiple single-letter options that do not take an argument can be combined into a single command line argument (with only one dash). Brackets ([ and ]) indicate that an option takes an optional argument.
patch Input Format.
ed script. See section 9.1 Selecting the patch Input Format.
patch.
patch Find Inexact Matches.
patch recognizes, then exit.
patch.
patch Input Format.
patch thinks are reversed or already applied.
See also `-R'. See section 9.2.2 Applying Reversed Patches.
patch.
patch Quoting Style.
patch.
patch.
patch Input Format.
patch.
patch.
patch
patchers.
| [ << ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |