Miscellaneous Notes
BFM Test Server
bfm.iasis.net 1234
Diffing Trees
diff -brc
Sorting Hash Keys in Perl
foreach $key (sort(keys %myhash )) {
print $key, '=', $myhash{$key}, "\n";
}
bfm.iasis.net 1234
diff -brc
foreach $key (sort(keys %myhash )) {
print $key, '=', $myhash{$key}, "\n";
}