summaryrefslogtreecommitdiff
path: root/Documentation/howto/howto-index.sh
blob: ace49830a8234fe055898d7b9c156a7524e3a93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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