Browse Source

Fixed some error stuff

Samuel W. Flint 8 năm trước cách đây
mục cha
commit
4ebc993812
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  1. 4 0
      history-stats

+ 4 - 0
history-stats

@@ -15,6 +15,10 @@ sub hashValueDescendingNum {
 while (<HISTORY>) {
     my $command = $_;
 
+    if ($command =~ m/^$/) {
+        next;
+    }
+
     my @comm = split(' ', $command);
 
     if ($comm[0] eq "sudo") {