Release v4.13441 - midsummer
[RRG-proxmark3.git] / client / pm3_cmd_h2lua.awk
bloba7b3409dd575c6e11ff3846e36a8276c152e8071
1 BEGIN {
2 print "--[["
3 print "These are Proxmark command definitions."
4 print "This file is automatically generated from pm3_cmd.h - DON'T EDIT MANUALLY."
5 print "--]]"
6 print "local __commands = {"
9 #$1 ~ /#define/ && $2 ~ /^CMD_([[:alnum:]_])+/ { print $2, "=", $3, "," }
10 $1 ~ /#define/ && $2 ~ /^CMD_[A-Za-z0-9_]+/ { sub(/\r/, ""); print $2, "=", $3 "," }
12 END {
13 print "}"
14 print "return __commands"