#!/usr/athena/bin/perl

if($ARGV[0] !~ /-/){
$config = "Settings";
}
else{
$opt = shift(@ARGV);
if($opt =~ /-c/){
$config = "Challenge10";
}
if($opt =~ /-C/){
$config = "Challenge25";
$plus = '/afs/sipb/project/corewars/deluxe/src/CODE/*';
}
}

$options = join(" ", @ARGV);
exec("/afs/sipb/project/corewars/deluxe/sun4bin/core -f /afs/sipb/project/corewars/deluxe/src/$config $options $plus");
