2006-03-09 16:24:19 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "/* Automatically generated by $0 */
|
|
|
|
struct cmdname_help
|
|
|
|
{
|
|
|
|
char name[16];
|
2006-12-14 10:31:05 +00:00
|
|
|
char help[80];
|
2006-03-09 16:24:19 +00:00
|
|
|
};
|
|
|
|
|
2007-06-13 08:42:05 +00:00
|
|
|
static struct cmdname_help common_cmds[] = {"
|
2006-03-09 16:24:19 +00:00
|
|
|
|
2007-12-02 07:39:19 +00:00
|
|
|
sed -n -e 's/^git-\([^ ]*\)[ ].* common.*/\1/p' command-list.txt |
|
|
|
|
sort |
|
2006-03-09 16:24:19 +00:00
|
|
|
while read cmd
|
|
|
|
do
|
2006-03-20 07:54:45 +00:00
|
|
|
sed -n '
|
2008-11-30 10:54:31 +00:00
|
|
|
/^NAME/,/git-'"$cmd"'/H
|
2006-03-20 07:54:45 +00:00
|
|
|
${
|
|
|
|
x
|
|
|
|
s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", "\1"},/
|
|
|
|
p
|
|
|
|
}' "Documentation/git-$cmd.txt"
|
2006-03-09 16:24:19 +00:00
|
|
|
done
|
|
|
|
echo "};"
|