]> jspc29.x-matter.uni-frankfurt.de Git - daqtools.git/commitdiff
quite -> quiet
authorManuel Penschuck <manuel.penschuck@stud.uni-frankfurt.de>
Sat, 16 Feb 2013 20:49:58 +0000 (21:49 +0100)
committerManuel Penschuck <manuel.penschuck@stud.uni-frankfurt.de>
Sat, 16 Feb 2013 20:49:58 +0000 (21:49 +0100)
web/cts

diff --git a/web/cts b/web/cts
index 4ef1bdccf90c8ce10fca6d39402f50b2883290de..d303bd2fc06e291066917762b793ca7696011795 100755 (executable)
--- 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 {