2 # Batch EXecutor 2.0 -- Operations on a Job
3 # (c) 2011 Martin Mares <mj@ucw.cz>
17 "q|queue=s" => \$queue_name,
18 ) && @ARGV == 1 or die <<AMEN ;
19 Usage: bjob [<options>] <job-id>
22 -e, --edit Run editor on the given job (no locking)
23 -q, --queue=<name> Act on the given queue
26 my $queue = BEX::Queue->new($queue_name);
27 my $fn = $queue->job_file($ARGV[0]);
28 -f $fn or die "No such job " . $ARGV[0] . "\n";