You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
239 B

  1. #!/usr/bin/perl
  2. BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
  3. use essential qw(sdate gettics);
  4. my $tics = &gettics();
  5. printf "tics: %s\n",$tics;
  6. my $sdate = &sdate($tics);
  7. printf "sdate: %s\n",$sdate;
  8. exit $?;
  9. 1;