diff options
Diffstat (limited to 'generate-hooklist.sh')
-rwxr-xr-x | generate-hooklist.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/generate-hooklist.sh b/generate-hooklist.sh new file mode 100755 index 0000000..2f9f54e --- /dev/null +++ b/generate-hooklist.sh @@ -0,0 +1,20 @@ +#!/bin/sh +# +# Usage: ./generate-hooklist.sh >hook-list.h + +cat <<EOF +/* Automatically generated by generate-hooklist.sh */ + +static const char *hook_name_list[] = { +EOF + +sed -n \ + -e '/^~~~~*$/ {x; s/^.*$/ "&",/; p;}' \ + -e 'x' \ + <Documentation/githooks.txt | + LC_ALL=C sort + +cat <<EOF + NULL, +}; +EOF |