#!/usr/bin/perl -w

# For XFBB 7.00

##VERSION##
##VERDATE##

if( (! -s "/home/xfbb/local.txt") || ! open(LOC,"< /home/xfbb/local.txt" ) ) {
   print STDOUT "No current information\n\n";
}else{
   print STDOUT <LOC>;
   close(LOC);
}
