Documentation / git-mailsplit.txton commit Merge http://www.kernel.org/pub/scm/gitk/gitk (8fc66df)
   1git-mailsplit(1)
   2================
   3
   4NAME
   5----
   6git-mailsplit - Totally braindamaged mbox splitter program.
   7
   8SYNOPSIS
   9--------
  10'git-mailsplit' [-d<prec>] [<mbox>] <directory>
  11
  12DESCRIPTION
  13-----------
  14Splits a mbox file into a list of files: "0001" "0002" ..  in the specified
  15directory so you can process them further from there.
  16
  17OPTIONS
  18-------
  19<mbox>::
  20        Mbox file to split.  If not given, the mbox is read from
  21        the standard input.
  22
  23<directory>::
  24        Directory in which to place the individual messages.
  25
  26-d<prec>::
  27        Instead of the default 4 digits with leading zeros,
  28        different precision can be specified for the generated
  29        filenames.
  30
  31
  32Author
  33------
  34Written by Linus Torvalds <torvalds@osdl.org>
  35and Junio C Hamano <junkio@cox.net>
  36
  37
  38Documentation
  39--------------
  40Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
  41
  42GIT
  43---
  44Part of the gitlink:git[7] suite
  45