Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2018-05-10 11:46:40 +0300
committerJunio C Hamano <gitster@pobox.com>2018-05-10 13:52:47 +0300
commit75ba897e3059da44ad0cf27d1e4d12dc03e54001 (patch)
tree40685b7592cbc4373949b1a91d37553cdef6f108 /generate-cmdlist.sh
parentfe0a9eaf31dd0c349ae4308498c33a5c3794b293 (diff)
generate-cmds.sh: factor out synopsis extract code
This makes it easier to reuse the same code in another place (very soon). Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'generate-cmdlist.sh')
-rwxr-xr-xgenerate-cmdlist.sh18
1 files changed, 11 insertions, 7 deletions
diff --git a/generate-cmdlist.sh b/generate-cmdlist.sh
index eeea4b67ea..31b6d886cb 100755
--- a/generate-cmdlist.sh
+++ b/generate-cmdlist.sh
@@ -1,5 +1,15 @@
#!/bin/sh
+get_synopsis () {
+ sed -n '
+ /^NAME/,/'"$1"'/H
+ ${
+ x
+ s/.*'"$1"' - \(.*\)/N_("\1")/
+ p
+ }' "Documentation/$1.txt"
+}
+
echo "/* Automatically generated by generate-cmdlist.sh */
struct cmdname_help {
char name[16];
@@ -39,12 +49,6 @@ 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"
+ echo " {\"$cmd\", $(get_synopsis git-$cmd), $tag},"
done
echo "};"