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