Index: /trunk/BNC/scripts/Common.pm
===================================================================
--- /trunk/BNC/scripts/Common.pm	(revision 9746)
+++ /trunk/BNC/scripts/Common.pm	(revision 9747)
@@ -46,4 +46,16 @@
     my $stderr = getContent($tmpfile);
     return ( $exit_code, $stdout, $stderr );
+}
+
+sub mkDir {
+    my $dir = shift;
+    return 1 if ( -d $dir );
+
+    eval { mkpath($dir) };
+    if ($@) {
+        warn("Could not create path [$dir]: $@");
+        return 0;
+    }
+    return 1;
 }
 
Index: /trunk/BNC/scripts/sot.pl
===================================================================
--- /trunk/BNC/scripts/sot.pl	(revision 9746)
+++ /trunk/BNC/scripts/sot.pl	(revision 9747)
@@ -123,5 +123,5 @@
 
 EXAMPLES:
-   $prog -n euref-ip.net /home/user/log/bnc*.log
+   $prog -n euref-ip.net /home/user/log/bnc.log*
 
 EOI_HILFE
