1#!/bin/sh23cat <<\EOF4GIT Howto Index5===============67Here is a collection of mailing list postings made by various8people describing how they use git in their workflow.910EOF1112for txt13do14title=`expr "$txt" : '.*/\(.*\)\.txt$'`15from=`sed -ne '16/^$/q17/^From:[ ]/{18s///19s/^[ ]*//20s/[ ]*$//21s/^/by /22p23}' "$txt"`24echo "25* link:$txt[$title] $from"2627done