The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/env perl
use strict;

use BatchSystem::SBS::ScriptsCommon;
BatchSystem::SBS::ScriptsCommon::init();

use Getopt::Long;
my($isFinished);
if (!GetOptions(
		"isfinished"=>\$isFinished,
	       )
   ){
  die;
}

foreach (@ARGV){
  print STDERR "$_\tremoved\n" if $sbs->job_remove(id=>$_, isfinished=>$isFinished);
}