]> wimlib.net Git - wimlib/blob - doc/man1/wimjoin.1
v1.11.0
[wimlib] / doc / man1 / wimjoin.1
1 .TH WIMJOIN "1" "January 2017" "wimlib 1.11.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 .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 wimjoin windows.wim windows*.swm
25 .RE
26 .SH NOTES
27 Both non-pipable and pipable split WIMs may be joined.
28 .PP
29 \fBwimjoin\fR is roughly equivalent to:
30 .RS
31 .PP
32 \fBwimexport\fR \fISWM_PART_1\fR --ref="\fISWM_GLOB\fR" all \fIOUT_WIMFILE\fR
33 .RE
34 .SH SEE ALSO
35 .BR wimlib-imagex (1)
36 .BR wimexport (1)
37 .BR wimsplit (1)