Git 2.23
[gitweb.git] / Documentation / howto-index.sh
index f9d3e57a9179d86389ce4b3f56e34431f1e9a4a7..167b363668b8b53d752d5971798d3ca26c8f7f1f 100755 (executable)
@@ -1,18 +1,18 @@
 #!/bin/sh
 
 cat <<\EOF
-GIT Howto Index
+Git Howto Index
 ===============
 
 Here is a collection of mailing list postings made by various
-people describing how they use git in their workflow.
+people describing how they use Git in their workflow.
 
 EOF
 
 for txt
 do
-       title=`expr "$txt" : '.*/\(.*\)\.txt$'`
-       from=`sed -ne '
+       title=$(expr "$txt" : '.*/\(.*\)\.txt$')
+       from=$(sed -ne '
        /^$/q
        /^From:[        ]/{
                s///
@@ -21,9 +21,9 @@ do
                s/^/by /
                p
        }
-       ' "$txt"`
+       ' "$txt")
 
-       abstract=`sed -ne '
+       abstract=$(sed -ne '
        /^Abstract:[    ]/{
                s/^[^   ]*//
                x
@@ -39,9 +39,16 @@ do
                x
                p
                q
-       }' "$txt"`
+       }' "$txt")
 
-       echo "* link:$txt[$title] $from
+       if grep 'Content-type: text/asciidoc' >/dev/null $txt
+       then
+               file=$(expr "$txt" : '\(.*\)\.txt$').html
+       else
+               file="$txt"
+       fi
+
+       echo "* link:$file[$title] $from
 $abstract
 
 "