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";
}