Skip to content

Instantly share code, notes, and snippets.

@echicken
Created October 27, 2017 15:51
Show Gist options
  • Save echicken/7eb45a051f3a11b1b10ac8ad87c17050 to your computer and use it in GitHub Desktop.
Save echicken/7eb45a051f3a11b1b10ac8ad87c17050 to your computer and use it in GitHub Desktop.
some bullshit
var mb = new MsgBase(argv[0]);
mb.open();
for (var n = 1; n < mb.last_msg; n++) {
var hdr = mb.get_msg_header(n);
if (hdr !== null) print(JSON.stringify(hdr.field_list));
}
mb.close();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment