[PATCH] Add some documentation.
[alt-git.git] / Documentation / howto-index.sh
blobf9d3e57a9179d86389ce4b3f56e34431f1e9a4a7
1 #!/bin/sh
3 cat <<\EOF
4 GIT Howto Index
5 ===============
7 Here is a collection of mailing list postings made by various
8 people describing how they use git in their workflow.
10 EOF
12 for txt
14 title=`expr "$txt" : '.*/\(.*\)\.txt$'`
15 from=`sed -ne '
16 /^$/q
17 /^From:[ ]/{
18 s///
19 s/^[ ]*//
20 s/[ ]*$//
21 s/^/by /
24 ' "$txt"`
26 abstract=`sed -ne '
27 /^Abstract:[ ]/{
28 s/^[^ ]*//
30 s/.*//
32 : again
33 /^[ ]/{
34 s/^[ ]*//
37 b again
42 }' "$txt"`
44 echo "* link:$txt[$title] $from
45 $abstract
49 done