Skip to content

Commit

Permalink
Add showorder helper script
Browse files Browse the repository at this point in the history
See incommon/inc-meta#55.
  • Loading branch information
iay committed May 22, 2017
1 parent 32aa2cd commit cdbdd3a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions mdx/incommon/showorder.pl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env perl

use strict;
my $id;
my $reg;

while (<>) {
if (/entityID=['"]([^'"]*)/) {
$id = $1;
}
if (/registrationAuthority=['"]([^'"]*)/) {
$reg = $1;
print "$reg -> $id\n";
}
}

0 comments on commit cdbdd3a

Please sign in to comment.