From b05df324bf50d4bc002d19cd673426e06ade45e0 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 18 Feb 2015 20:05:51 +0100 Subject: [PATCH] make_commands_list script --- contrib/make_commands_list | 1 + 1 file changed, 1 insertion(+) create mode 100755 contrib/make_commands_list diff --git a/contrib/make_commands_list b/contrib/make_commands_list new file mode 100755 index 00000000..3c2052ad --- /dev/null +++ b/contrib/make_commands_list @@ -0,0 +1 @@ +cat lib/commands.py|grep register_command|sed "s/register_command(\(.*\))/\1/" |sed "s/'//g"| awk -F, '{print "|-\n|" $1 "|| " $7 "|| " $8 "|| " $4 "|| " $5 "|| " $6 }'