tg.sh: next version is 0.19.13
[topgit/pro.git] / create-help.sh
bloba51ccfb5314f04b56d31e2f3d26b7af50a096442
1 #!/bin/sh
3 # Create the tg-foo.txt files which contain help for the tg-foo command.
5 if [ $# -ne 1 ] ; then
6 echo "Usage: $0 <tgcommand>" 1>&2
7 exit 1
8 fi
10 < README awk '
11 BEGIN { incommand = 0; }
12 /^tg '"$1"'$/ { incommand = 1; next; }
13 /^~/ { next; } # Ignore the title underlines.
14 /^[^\t]/ { incommand = 0; next; }
15 { if (incommand) { print $0; } }
16 ' | perl ./polish-help-txt.pl > tg-"$1".txt