in reply to Re: looking for parser of binary .JOB files (MS Task Scheduler)
in thread looking for parser of binary .JOB files (MS Task Scheduler)

Win32::TaskScheduler is a module with XS part, not a _pure_ perl. This module works only on windows, look at the required headers: http://search.cpan.org/src/UNICOLET/Win32-TaskScheduler2.0.3/TaskScheduler.h
  • Comment on Re^2: looking for parser of binary .JOB files (MS Task Scheduler)

Replies are listed 'Best First'.
Re^3: looking for parser of binary .JOB files (MS Task Scheduler)
by Anonymous Monk on Sep 10, 2008 at 05:15 UTC
    So can't you use it to re-implement in pure perl? _pure_perl is a goofy requirement. Either you want to complete a job, or it doesn't matter.
      So can't you use it to re-implement in pure perl?

      rewrite windows functions for linux? Not sure I am capable, WINE did it 15 years :-)

      perl -e 'open F, $ARGV[0];local $/;undef $/;$exe=<F>;$exe=~s/(.)\x00/$ +1/g;@strings=$exe=~/[\w\.\:\\\-_\~]{6,}/g;print "@strings"' notepad.j +ob