add spot2sql.pl for experiment sql support
[spider.git] / perl / DXCommandmode.pm
index 4dbeb863c8ba784f8ee3b264eb4e507cfc4d0e5f..080cf666ce0cbc3dc99032bbc4a1d9452af24bd1 100644 (file)
@@ -439,7 +439,8 @@ sub run_cmd
        if ($cmd) {
                # strip out // and .. on command only
                $cmd =~ s|//|/|g;
-               $cmd =~ s|\.+|\.|g;
+               $cmd =~ s|^/||g;                # no leading / either
+               $cmd =~ s|[^-?\w/]||g;  # and no funny characters
                                        
                my ($path, $fcmd);