X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/0de8e3874d6524379550a50a4d9c29faf2d239ea..84f9cf06261d20d81fd4c0f2aa7d4d384df751b4:/client/scripts/dumptoemul-mfu.lua diff --git a/client/scripts/dumptoemul-mfu.lua b/client/scripts/dumptoemul-mfu.lua index bdcc667b..b901a2ba 100644 --- a/client/scripts/dumptoemul-mfu.lua +++ b/client/scripts/dumptoemul-mfu.lua @@ -2,9 +2,8 @@ -- Have a look there for further details getopt = require('getopt') bin = require('bin') - -example = "script run dumptoemul -i dumpdata-foobar.bin" -author = "Martin Holst Swende" +example = "script run dumptoemul-mfu -i dumpdata-foobar.bin" +author = "Martin Holst Swende \n @Marshmellow" usage = "script run dumptoemul [-i ] [-o ]" desc =[[ This script takes a dumpfile from 'hf mf dump' and converts it to a format that can be used @@ -16,11 +15,6 @@ Arguments: -o Specifies the output file. If omitted, .eml is used. ]] - -------------------------------- --- Some utilities -------------------------------- - --- -- A debug printout-function function dbg(args) @@ -34,11 +28,11 @@ function oops(err) print("ERROR: ",err) end - --- -- Usage help function help() print(desc) + print(author) print("Example usage") print(example) end