Wanna know the boot time of a linux box? It's stored in /proc/stat, for easy use, in the standard unix time format. Here's a 1 liner to print it out, in your local timezone.
open P,"/proc/stat";undef $/;$c=<P>;($t)=($c =~ /btime\s(\d+)/);print
+localtime($t)."\n";