Skip to content
Snippets Groups Projects
Commit 6d5ca8e4 authored by rswindell's avatar rswindell
Browse files

A little script for hex-dumping data files.

parent a55aa2e5
Branches
Tags
No related merge requests found
// $Id$
load("hexdump_lib.js");
function main()
{
var i;
for(i=0; i < argv.length; i++) {
var file = new File(argv[i]);
if(!file.open("rb"))
alert(file.name + " open error " + file.error);
else {
hexdump_file(file);
file.close();
}
}
}
main();
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment