1GIT-MAILSPLIT(1) Git Manual GIT-MAILSPLIT(1)
2
3
4
6 git-mailsplit - Simple UNIX mbox splitter program
7
9 git-mailsplit [-b] [-f<nn>] [-d<prec>] -o<directory> [--]
10 [<mbox>|<Maildir>...]
11
13 Splits a mbox file or a Maildir into a list of files: "0001" "0002" ..
14 in the specified directory so you can process them further from there.
15
16 Important
17 Maildir splitting relies upon filenames being sorted to output patches
18 in the correct order.
19
20
22 <mbox>
23 Mbox file to split. If not given, the mbox is read from the
24 standard input.
25
26 <Maildir>
27 Root of the Maildir to split. This directory should contain the
28 cur, tmp and new subdirectories.
29
30 <directory>
31 Directory in which to place the individual messages.
32
33 -b
34 If any file doesn´t begin with a From line, assume it is a single
35 mail message instead of signaling error.
36
37 -d<prec>
38 Instead of the default 4 digits with leading zeros, different
39 precision can be specified for the generated filenames.
40
41 -f<nn>
42 Skip the first <nn> numbers, for example if -f3 is specified, start
43 the numbering with 0004.
44
46 Written by Linus Torvalds <torvalds@osdl.org> and Junio C Hamano
47 <junkio@cox.net>
48
50 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
51
53 Part of the git(7) suite
54
55
56
57
58Git 1.5.3.3 10/09/2007 GIT-MAILSPLIT(1)