No modified codes have been submitted for this Microcode.
We're sorry and we take it all back
This script must be run as root.
15. March 2009
This script must be run as root.
15. March 2009
#!/usr/bin/perl use POSIX; ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); $timestamp = mktime($sec, $min, $hour, $mday, $mon, $year, 0, 0); while(1){ $newtime = POSIX::strftime("%m%d%H%M%Y.%S", localtime($timestamp-$count)); `date $newtime`; print `date`; $count++;sleep(1); }