diff options
Diffstat (limited to 'Documentation/howto/howto-index.sh')
-rwxr-xr-x | Documentation/howto/howto-index.sh | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Documentation/howto/howto-index.sh b/Documentation/howto/howto-index.sh new file mode 100755 index 0000000000..ace49830a8 --- /dev/null +++ b/Documentation/howto/howto-index.sh @@ -0,0 +1,56 @@ +#!/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 adoc +do + title=$(expr "$adoc" : '.*/\(.*\)\.adoc$') + from=$(sed -ne ' + /^$/q + /^From:[ ]/{ + s/// + s/^[ ]*// + s/[ ]*$// + s/^/by / + p + } + ' "$adoc") + + abstract=$(sed -ne ' + /^Abstract:[ ]/{ + s/^[^ ]*// + x + s/.*// + x + : again + /^[ ]/{ + s/^[ ]*// + H + n + b again + } + x + p + q + }' "$adoc") + + if grep 'Content-type: text/asciidoc' >/dev/null $adoc + then + file=$(expr "$adoc" : '\(.*\)\.adoc$').html + else + file="$adoc" + fi + + echo "* link:howto/$(basename "$file")[$title] $from +$abstract + +" + +done |