ptab: Replace the Catacomb groups.
[u/mdw/catacomb] / utils / genpgroups
diff --git a/utils/genpgroups b/utils/genpgroups
new file mode 100755 (executable)
index 0000000..086cfd5
--- /dev/null
@@ -0,0 +1,15 @@
+#! /bin/sh
+
+set -e
+for i in \
+       512:128 \
+       1024:160 \
+       1536:192 \
+       2048:224 \
+       3072:256 \
+       7680:384 \
+       15360:512
+do 
+  set -- `echo $i | tr : " "`
+  utils/genpgroup catacomb-ll-$2-$1 $1 $2 !
+done