From: Manuel Penschuck Date: Sat, 16 Feb 2013 20:49:58 +0000 (+0100) Subject: quite -> quiet X-Git-Url: https://jspc29.x-matter.uni-frankfurt.de/git/?a=commitdiff_plain;h=9c40de8491396524a43f06ba08ee110a2d5f2ed7;p=daqtools.git quite -> quiet --- diff --git a/web/cts b/web/cts index 4ef1bdc..d303bd2 100755 --- a/web/cts +++ b/web/cts @@ -48,7 +48,7 @@ Options: -e | --endpoint Endpoint number of CTS -s | --sim Simulate TrbNet -i | --interval Interval of rate monitoring in milliseconds. Default: 1000 - -q | --quite Prevent monitor from writing values to stdout + -q | --quiet Prevent monitor from writing values to stdout Commands: l | list Connect to CTS and list all named registers available @@ -92,7 +92,7 @@ my $endpoint = CtsConfig->getDefaultEndpoint; my $updateInterval = 1000; my $rateNumber = 30; -my $quite = 0; +my $quiet = 0; for(my $i=0; $i < @ARGV; $i++) { my $arg = $ARGV[$i]; @@ -132,7 +132,7 @@ for(my $i=0; $i < @ARGV; $i++) { exit(); } - $quite = 1; + $quiet = 1; } elsif ($arg eq "-n") { unless ($i < @ARGV) { @@ -172,7 +172,7 @@ for(my $i=0; $i < @ARGV; $i++) { } elsif ($arg eq "m" or $arg eq "monitor") { my $cts = connectToCTS($endpoint); - commandMonitor($cts, $ARGV[++$i], $updateInterval, $rateNumber, $quite); + commandMonitor($cts, $ARGV[++$i], $updateInterval, $rateNumber, $quiet); exit(); } else {