]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-mailsplit.txt
Assorted typo fixes
[thirdparty/git.git] / Documentation / git-mailsplit.txt
CommitLineData
7fc9d69f
JH
1git-mailsplit(1)
2================
3
4NAME
5----
7bd7f280 6git-mailsplit - Totally braindamaged mbox splitter program
7fc9d69f
JH
7
8SYNOPSIS
9--------
b3f041fb 10'git-mailsplit' [-b] [-f<nn>] [-d<prec>] -o<directory> [--] [<mbox>...]
7fc9d69f
JH
11
12DESCRIPTION
13-----------
f58b7432
LAS
14Splits a mbox file into a list of files: "0001" "0002" .. in the specified
15directory so you can process them further from there.
7fc9d69f
JH
16
17OPTIONS
18-------
f58b7432 19<mbox>::
8b73edf4
JH
20 Mbox file to split. If not given, the mbox is read from
21 the standard input.
7fc9d69f 22
f58b7432
LAS
23<directory>::
24 Directory in which to place the individual messages.
7fc9d69f 25
b3f041fb
PA
26-b::
27 If any file doesn't begin with a From line, assume it is a
addf88e4 28 single mail message instead of signaling error.
b3f041fb 29
54ba6013
JH
30-d<prec>::
31 Instead of the default 4 digits with leading zeros,
32 different precision can be specified for the generated
33 filenames.
34
b3f041fb
PA
35-f<nn>::
36 Skip the first <nn> numbers, for example if -f3 is specified,
37 start the numbering with 0004.
54ba6013 38
7fc9d69f
JH
39Author
40------
41Written by Linus Torvalds <torvalds@osdl.org>
8b73edf4
JH
42and Junio C Hamano <junkio@cox.net>
43
7fc9d69f
JH
44
45Documentation
46--------------
47Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
48
49GIT
50---
a7154e91 51Part of the gitlink:git[7] suite
7fc9d69f 52