fix log and sh/dx ordering issues.
[spider.git] / perl / DXLogPrint.pm
index 9bb51f20a579a2e34ecf6220e5690ba7cd9e420a..0d99eb41804a740a9d0e95a18c13cabdf2a93b36 100644 (file)
@@ -18,9 +18,12 @@ use DXLog;
 use Julian;
 
 
-our $readback = `which tac`;
+our $readback = 1;
+if ($readback) {
+       $readback = `which tac`;
+} 
 chomp $readback;
-undef $readback;                               # yet another reason not to use the cloud!
+#undef $readback;                              # yet another reason not to use the cloud!
  
 
 use strict;
@@ -109,7 +112,7 @@ sub print
                return "show/$name: ${s}not found";
        } 
 
-       for (reverse @in) {
+       for (sort {$a <=> $b } @in) {
                my @line = split /\^/ ;
                push @out, print_item(\@line);