From: Junio C Hamano <gitster@pobox•com>
To: Eric Sunshine <sunshine@sunshineco•com>
Cc: git@vger•kernel.org, "Renato Botelho" <garga@freebsd•org>,
"Sébastien Guimmara" <sebastien.guimmara@gmail•com>
Subject: Re: [PATCH] generate-cmdlist: re-implement as shell script
Date: Wed, 19 Aug 2015 15:38:58 -0700 [thread overview]
Message-ID: <xmqqegiy9a4d.fsf@gitster.dls.corp.google.com> (raw)
In-Reply-To: <1440015528-7791-1-git-send-email-sunshine@sunshineco.com> (Eric Sunshine's message of "Wed, 19 Aug 2015 16:18:48 -0400")
Eric Sunshine <sunshine@sunshineco•com> 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 "};"
next prev parent reply other threads:[~2015-08-19 22:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-08-19 20:18 [PATCH] generate-cmdlist: re-implement as shell script Eric Sunshine
2015-08-19 22:38 ` Junio C Hamano [this message]
2015-08-20 18:11 ` Eric Sunshine
2015-08-20 17:24 ` Junio C Hamano
2015-08-20 18:18 ` Eric Sunshine
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=xmqqegiy9a4d.fsf@gitster.dls.corp.google.com \
--to=gitster@pobox$(echo .)com \
--cc=garga@freebsd$(echo .)org \
--cc=git@vger$(echo .)kernel.org \
--cc=sebastien.guimmara@gmail$(echo .)com \
--cc=sunshine@sunshineco$(echo .)com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox