]>
iEval git - gruntmaster-page.git/blob - gruntmaster-job
4 use Gruntmaster
::Data qw
/jobcard job_date job_user job_problem job_filesize job_private job_result_text job_daemon clean_job problem_name PUBLISH HDEL/;
6 use IO
::Prompter
[ -style
=> 'bold', '-stdio', '-verbatim' ];
7 use File
::Slurp qw
/read_file/;
8 use Term
::ANSIColor qw
/RED RESET/;
9 use POSIX qw
/strftime/;
11 ##################################################
23 local $_ = shift or goto &cmd_list
;
24 say "Date: " , strftime
('%c', localtime job_date
);
25 say "User: ", job_user
;
26 say "Problem: ", problem_name job_problem
;
27 say "Size: ", sprintf "%.2fKB", job_filesize
() / 1024;
28 say "Private: ", (job_private
() ?
'yes' : 'no');
29 say "Result text: ", job_result_text
;
30 say "Daemon: ", job_daemon
;
34 local $_ = shift or goto &cmd_list
;
39 ##################################################
42 my $cmd = 'cmd_' . shift;
43 cmd_help
unless exists $main::{$cmd};
44 $cmd->(@ARGV) if exists $main::{$cmd};
53 gruntmaster-job - shell interface to Gruntmaster 6000 job log
58 gruntmaster-job show 5
59 gruntmaster-job rerun 7
This page took 0.052196 seconds and 4 git commands to generate.