1
0
mirror of https://github.com/git/git.git synced 2024-10-05 15:01:39 +02:00
git/Documentation/howto-index.sh
Junio C Hamano f358c10f91 Add Abstract: support for howto index generator.
Maybe it's time for me to really learn asciidoc.  Also I should do Perl ;-).

Signed-off-by: Junio C Hamano <junkio@cox.net>
2005-08-26 12:35:51 -07:00

50 lines
539 B
Bash
Executable File

#!/bin/sh
cat <<\EOF
GIT Howto Index
===============
Here is a collection of mailing list postings made by various
people describing how they use git in their workflow.
EOF
for txt
do
title=`expr "$txt" : '.*/\(.*\)\.txt$'`
from=`sed -ne '
/^$/q
/^From:[ ]/{
s///
s/^[ ]*//
s/[ ]*$//
s/^/by /
p
}
' "$txt"`
abstract=`sed -ne '
/^Abstract:[ ]/{
s/^[^ ]*//
x
s/.*//
x
: again
/^[ ]/{
s/^[ ]*//
H
n
b again
}
x
p
q
}' "$txt"`
echo "* link:$txt[$title] $from
$abstract
"
done