home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / perl / time < prev    next >
Encoding:
Text File  |  2003-11-06  |  309 b   |  14 lines

  1. #!/usr/local/bin/perl -w
  2.  
  3. use blib;
  4. use Net::Time qw(inet_time inet_daytime);
  5.  
  6. print inet_daytime('localhost');
  7. print inet_daytime('localhost','tcp');
  8. print inet_daytime('localhost','udp');
  9.  
  10. print inet_time('localhost'),"\n";
  11. print inet_time('localhost','tcp'),"\n";
  12. print inet_time('localhost','udp'),"\n";
  13.  
  14.