]> git.zerfleddert.de Git - proxmark3-svn/blobdiff - client/lualibs/html_dumplib.lua
Merge branch 'master' of https://github.com/iceman1001/ForPm3
[proxmark3-svn] / client / lualibs / html_dumplib.lua
index b8c7ccaa2d509d60931c32b69cf4e00a9f5361b4..3a28d5ae6f988cf5b30c0ffb40094342bca797e6 100644 (file)
@@ -47,6 +47,18 @@ local function save_HTML(javascript, filename)
 
 end
 
+local function save_TEXT(data,filename)
+       -- Open the output file
+       local outfile = io.open(filename, "w")
+       if outfile == nil then 
+               return oops(string.format("Could not write to file %s",tostring(filename)))
+       end
+       
+       outfile:write(data)
+       io.close(outfile)
+       return filename   
+end
+
 local function save_BIN(data, filename)
        -- Open the output file
        
@@ -181,4 +193,6 @@ return {
        convert_bin_to_html = convert_bin_to_html,
        convert_eml_to_html = convert_eml_to_html,
     convert_eml_to_bin = convert_eml_to_bin,   
+    SaveAsBinary = save_BIN,
+       SaveAsText = save_TEXT,
 }
Impressum, Datenschutz