Eric Sunshine <sunshine@xxxxxxxxxxxxxx> writes: > In addition to reviving 527ec39^:generate-cmdlist.sh and extending it, I > also re-indented it with tabs instead of spaces, so it's helpful to > ignore whitespace changes when comparing the old and new versions of the > shell script. Hmph. Perhaps we can view it as part of reverting 527ec39 and then redoing it in shell. The way the shell script accumulates matchgrp variable (i.e. the literal LF in ${var:+string}) makes me feel some possible portability scare, which might be solved in a more stupid (i.e. not giving various reimplementations of Bourne shells a chance to screw it up) way by using another temporary file, but other than that the resurrected script looks OK to me. Thanks. > diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh > new file mode 100755 > index 0000000..1ac329d > --- /dev/null > +++ b/generate-cmdlist.sh > @@ -0,0 +1,50 @@ > +#!/bin/sh > + > +echo "/* Automatically generated by $0 */ > +struct cmdname_help { > + char name[16]; > + char help[80]; > + unsigned char group; > +}; > + > +static const char *common_cmd_groups[] = {" > + > +tmp=cmdgrps$$.tmp > +trap "rm -fr $tmp" 0 1 2 3 15 > + > +sed -n ' > + 1,/^### common groups/b > + /^### command list/q > + /^#/d; /^[ ]*$/b > + h;s/^[^ ][^ ]*[ ][ ]*\(.*\)/ N_("\1"),/p > + g;s/^\([^ ][^ ]*\)[ ].*/\1/w '$tmp' > + ' > +printf '};\n\n' > + > +n=0 > +matchgrp= > +substnum= > +while read grp > +do > + matchgrp="$matchgrp${matchgrp:+ > +}^git-..*[ ]$grp" > + substnum="$substnum${substnum:+;}s/[ ]$grp/$n/" > + n=$(($n+1)) > +done <$tmp > + > +printf 'static struct cmdname_help common_cmds[] = {\n' > +grep "$matchgrp" | > +sed 's/^git-//' | > +sort | > +while read cmd tags > +do > + tag=$(echo $tags | sed "$substnum; s/[^0-9]//g") > + sed -n ' > + /^NAME/,/git-'"$cmd"'/H > + ${ > + x > + s/.*git-'"$cmd"' - \(.*\)/ {"'"$cmd"'", N_("\1"), '$tag'},/ > + p > + }' "Documentation/git-$cmd.txt" > +done > +echo "};" -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html