added dbexport & dxqsl_import/export cmds
[spider.git] / cmd / dbimport.pl
index 797805eaee2d7513246b81d88b303ad4430c94a0..a08e169346c83a55cd92b92bc55e52f0b6772828 100644 (file)
@@ -22,8 +22,7 @@ my $count;
 
 open(IMP, $fn) or return (1, "Cannot open $fn $!");
 while (<IMP>) {
-       chomp;
-       s/\r//g;
+       s/[\r\n]+$//g;
        if ($state == 0) {
                if (/^\&\&/) {
                        $state = 0;
@@ -50,5 +49,5 @@ while (<IMP>) {
 }
 close (IMP);
 
-push @out, $self->msg('db10', $count, $db->name);
+push @out, $self->msg('db10', $count, $fn, $db->name);
 return (1, @out);