]> wimlib.net Git - wimlib/blob - doc/man1/wimjoin.1
v1.13.0
[wimlib] / doc / man1 / wimjoin.1
1 .TH WIMJOIN "1" "November 2018" "wimlib 1.13.0" "User Commands"
2 .SH NAME
3 wimjoin\- Join a split WIM into a standalone WIM
4 .SH SYNOPSIS
5 \fBwimjoin\fR [\fIOPTION\fR...] \fIOUT_WIMFILE\fR \fISPLIT_WIM_PART\fR...
6 .SH DESCRIPTION
7 \fBwimjoin\fR, or equivalently \fBwimlib-imagex join\fR, joins the
8 \fISPLIT_WIM_PARTs\fR into a standalone (one-part) WIM \fIOUT_WIMFILE\fR.  All
9 parts of the split WIM must be specified; you probably want to do so using a
10 shell wildcard.
11 .SH OPTIONS
12 .TP 6
13 \fB--check\fR
14 When reading each \fISPLIT_WIM_PART\fR, verify its integrity if it contains
15 extra integrity information.  In addition, include extra integrity information
16 in \fIOUT_WIMFILE\fR, even if the split WIM parts did not contain this
17 information.
18 .TP
19 \fB--include-integrity\fR
20 Include extra integrity information in \fIOUT_WIMFILE\fR, i.e. like
21 \fB--check\fR but don't also verify the split WIM parts beforehand.
22 .SH EXAMPLES
23 Join a split WIM, with the parts named `windows*.swm' where the * is anything
24 (usually the number of the part, except for the first part which may have no
25 number), and write the joined WIM to the file `windows.wim'.
26 .RS
27 .PP
28 wimjoin windows.wim windows*.swm
29 .RE
30 .SH NOTES
31 Both non-pipable and pipable split WIMs may be joined.
32 .PP
33 \fBwimjoin\fR is roughly equivalent to:
34 .RS
35 .PP
36 \fBwimexport\fR \fISWM_PART_1\fR --ref="\fISWM_GLOB\fR" all \fIOUT_WIMFILE\fR
37 .RE
38 .SH SEE ALSO
39 .BR wimlib-imagex (1)
40 .BR wimexport (1)
41 .BR wimsplit (1)