summaryrefslogtreecommitdiffstats
path: root/makebashcompletion
diff options
context:
space:
mode:
Diffstat (limited to 'makebashcompletion')
-rwxr-xr-xmakebashcompletion7
1 files changed, 7 insertions, 0 deletions
diff --git a/makebashcompletion b/makebashcompletion
new file mode 100755
index 0000000..9e88d9d
--- /dev/null
+++ b/makebashcompletion
@@ -0,0 +1,7 @@
+#!/bin/sh -e
+
+BCPATH=doc/bash_completion
+
+for prog in nghttp nghttpd nghttpx h2load; do
+ $BCPATH/make_bash_completion.py src/$prog > $BCPATH/$prog
+done