]>
Commit | Line | Data |
---|---|---|
fb9acd45 | 1 | BEGIN { |
2 | print "--[[" | |
3 | print "These are Proxmark command definitions." | |
4 | print "This file is automatically generated from usb_cmd.h - DON'T EDIT MANUALLY." | |
5 | print "--]]" | |
6 | print "local __commands = {" | |
7 | } | |
8 | ||
9 | #$1 ~ /#define/ && $2 ~ /^CMD_([[:alnum:]_])+/ { print $2, "=", $3, "," } | |
10 | $1 ~ /#define/ && $2 ~ /^CMD_[A-Za-z0-9_]+/ { sub(/\r/, ""); print $2, "=", $3 "," } | |
11 | ||
12 | END { | |
13 | print "}" | |
14 | print "return __commands" | |
15 | } |