1#!/bin/sh
23
cat <<\EOF
4GIT Howto Index
5===============
67
Here is a collection of mailing list postings made by various
8people describing how they use git in their workflow.
910
EOF
1112
for txt
13do
14title=`expr "$txt" : '.*/\(.*\)\.txt$'`
15from=`sed -ne '
16/^$/q
17/^From:[ ]/{
18s///
19s/^[ ]*//
20s/[ ]*$//
21s/^/by /
22p
23}' "$txt"`
24echo "
25* link:$txt[$title] $from"
2627
done