<!ELEMENT patch ((param | prefix)*)>
<!ATTLIST patch
base CDATA #IMPLIED>
|
This element occurs in the elements : Element : <alfs> | Element: <stage>
See also : Element: <param> | Element: <prefix>
The element patch is one of the many main operation elements. It is used to execute the patch command.
The sub-elements param contain the parameters of the command.
The attribute base specified the directory in which the command will be performed.
<patch>
<param>-N</param>
<param>-p1</param>
<param>-i ../gawk-3.1.1.patch</param>
</patch>
|
The equivalent bash script is :
echo 'patch -N -p1 -i ../gawk-3.1.1.patch' patch -N -p1 -i ../gawk-3.1.1.patch |