mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-24 05:21:17 +00:00
54a4ac5469
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@85 67975925-1194-0748-b3d5-c16f83f1a3a1
17 lines
294 B
Perl
17 lines
294 B
Perl
#!/usr/bin/env perl
|
|
|
|
use strict;
|
|
|
|
my $verbose=0; # set to 1 for debugging
|
|
|
|
my $port = 8999; # just a default
|
|
do {
|
|
if($ARGV[0] eq "-v") {
|
|
$verbose=1;
|
|
}
|
|
elsif($ARGV[0] =~ /^(\d+)$/) {
|
|
$port = $1;
|
|
}
|
|
} while(shift @ARGV);
|
|
|
|
exec("server/sws $port");
|