6 git-mailsplit - Simple UNIX mbox splitter program
11 'git mailsplit' [-b] [-f<nn>] [-d<prec>] [--keep-cr] [--mboxrd]
12 -o<directory> [--] [(<mbox>|<Maildir>)...]
16 Splits a mbox file or a Maildir into a list of files: "0001" "0002" .. in the
17 specified directory so you can process them further from there.
19 IMPORTANT: Maildir splitting relies upon filenames being sorted to output
20 patches in the correct order.
25 Mbox file to split. If not given, the mbox is read from
29 Root of the Maildir to split. This directory should contain the cur, tmp
30 and new subdirectories.
33 Directory in which to place the individual messages.
36 If any file doesn't begin with a From line, assume it is a
37 single mail message instead of signaling error.
40 Instead of the default 4 digits with leading zeros,
41 different precision can be specified for the generated
45 Skip the first <nn> numbers, for example if -f3 is specified,
46 start the numbering with 0004.
49 Do not remove `\r` from lines ending with `\r\n`.
52 Input is of the "mboxrd" format and "^>+From " line escaping is
57 Part of the linkgit:git[1] suite