ns/releases/3.03/source/curl/tests/httpserver.pl
tankefugl 54a4ac5469 o Branched from 3.02
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@85 67975925-1194-0748-b3d5-c16f83f1a3a1
2005-04-26 15:38:32 +00:00

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");