perkeep/dev-camsync

12 lines
271 B
Plaintext
Raw Normal View History

#!/usr/bin/perl
use strict;
use FindBin qw($Bin);
use Getopt::Long;
require "$Bin/misc/devlib.pl";
my $camsync = build_bin("./cmd/camsync");
exec($camsync, "--verbose", "--src=http://localhost:3179/bs", "--srcpassword=pass3179", @ARGV);
die "Failed to exec camsync.";
2011-03-03 04:03:09 +00:00