]> wimlib.net Git - wimlib/blob - doc/imagex-join.1.in
Update version to 1.4.2
[wimlib] / doc / imagex-join.1.in
1 .TH IMAGEX "1" "June 2013" "@IMAGEX_PROGNAME@ @VERSION@" "User Commands"
2 .SH NAME
3 @IMAGEX_PROGNAME@-join \- Join split WIMs into a standalone one-part WIM
4 .SH SYNOPSIS
5 \fB@IMAGEX_PROGNAME@ join\fR [\fIOPTION\fR...] \fIOUT_WIMFILE\fR \fISPLIT_WIM\fR...
6 .SH DESCRIPTION
7 Joins the \fISPLIT_WIMs\fR into a standalone one-part WIM \fIOUT_WIMFILE\fR.
8 .PP
9 All parts of the split WIM  must be specified.  You probably want to do so using
10 a shell wildcard.
11 .SH OPTIONS
12 .TP 6
13 \fB--check\fR
14 When reading each \fISPLIT_WIM\fR, verify its integrity if the integrity table is
15 present; additionally, when writing \fIOUT_WIMFILE\fR,
16 write an integrity table.  If this option is not specified, no integrity table
17 is included in the new WIM file, even if there was one before.
18 .SH EXAMPLES
19 Join a split WIM, with the parts named `windows*.swm' where the * is anything
20 (usually the number of the part, except for the first part which may have no
21 number), and write the joined WIM to the file `windows.wim'.
22 .RS
23 .PP
24 @IMAGEX_PROGNAME@ join windows.wim windows*.swm
25 .RE
26 .SH NOTES
27 \fB@IMAGEX_PROGNAME@ join\fR is roughly equivalent to:
28 .RS
29 .PP
30 \fB@IMAGEX_PROGNAME@ export\fR \fISWM_PART_1\fR --ref="\fISWM_GLOB\fR" [--check] all \fIOUT_WIMFILE\fR
31 .RE
32 .SH SEE ALSO
33 .BR @IMAGEX_PROGNAME@ (1)
34 .BR @IMAGEX_PROGNAME@-export (1)