2005-08-23 10:49:47 +02:00
|
|
|
git-mailsplit(1)
|
|
|
|
================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-mailsplit - Simple UNIX mbox splitter program
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2010-10-08 19:31:17 +02:00
|
|
|
'git mailsplit' [-b] [-f<nn>] [-d<prec>] [--keep-cr] -o<directory> [--] [(<mbox>|<Maildir>)...]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2007-05-25 00:15:36 +02:00
|
|
|
Splits a mbox file or a Maildir into a list of files: "0001" "0002" .. in the
|
|
|
|
specified directory so you can process them further from there.
|
|
|
|
|
|
|
|
IMPORTANT: Maildir splitting relies upon filenames being sorted to output
|
|
|
|
patches in the correct order.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2005-08-28 23:16:01 +02:00
|
|
|
<mbox>::
|
2005-10-07 00:55:43 +02:00
|
|
|
Mbox file to split. If not given, the mbox is read from
|
|
|
|
the standard input.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2007-05-25 00:15:36 +02:00
|
|
|
<Maildir>::
|
|
|
|
Root of the Maildir to split. This directory should contain the cur, tmp
|
|
|
|
and new subdirectories.
|
|
|
|
|
2008-06-04 22:50:31 +02:00
|
|
|
-o<directory>::
|
2005-08-28 23:16:01 +02:00
|
|
|
Directory in which to place the individual messages.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-12-14 07:39:23 +01:00
|
|
|
-b::
|
|
|
|
If any file doesn't begin with a From line, assume it is a
|
2006-07-09 09:44:30 +02:00
|
|
|
single mail message instead of signaling error.
|
2005-12-14 07:39:23 +01:00
|
|
|
|
2005-10-06 23:25:52 +02:00
|
|
|
-d<prec>::
|
|
|
|
Instead of the default 4 digits with leading zeros,
|
|
|
|
different precision can be specified for the generated
|
|
|
|
filenames.
|
|
|
|
|
2005-12-14 07:39:23 +01:00
|
|
|
-f<nn>::
|
|
|
|
Skip the first <nn> numbers, for example if -f3 is specified,
|
|
|
|
start the numbering with 0004.
|
2005-10-06 23:25:52 +02:00
|
|
|
|
2010-02-27 15:20:25 +01:00
|
|
|
--keep-cr::
|
|
|
|
Do not remove `\r` from lines ending with `\r\n`.
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|