Preparations for option -x

This commit is contained in:
Ole Tange 2009-02-17 04:58:13 +01:00
parent 937e204b1e
commit d5e29c73a2
13 changed files with 206 additions and 111 deletions

174
parallel
View file

@ -93,6 +93,10 @@ output from different commands to be mixed. Can be reversed with B<-g>.
Verbose. Print the job to be run. Can be reversed with B<-s>. Verbose. Print the job to be run. Can be reversed with B<-s>.
=item B<-x>
xargs. Insert as many arguments as the command line length permits.
=back =back
=head1 EXAMPLE 1: Working as cat | sh. Ressource inexpensive jobs and evaluation =head1 EXAMPLE 1: Working as cat | sh. Ressource inexpensive jobs and evaluation
@ -185,6 +189,10 @@ files in each directory:
B<ls | parallel 'echo -n {}" "; ls {}|wc -l'> B<ls | parallel 'echo -n {}" "; ls {}|wc -l'>
To put the output in a file called <name>.dir:
B<ls | parallel '(echo -n {}" "; ls {}|wc -l) >>B< {}.dir'>
=head1 QUOTING =head1 QUOTING
For more advanced use quoting may be an issue. The following will For more advanced use quoting may be an issue. The following will
@ -208,6 +216,12 @@ B<ls | parallel -q "diff {} foo >>B<{}.diff">
because > needs to be interpreted by the shell. because > needs to be interpreted by the shell.
If you get errors like:
B<sh: -c: line 0: syntax error near unexpected token>
then you might try using B<-q>.
B<Conclusion>: To avoid dealing with the quoting problems it may be B<Conclusion>: To avoid dealing with the quoting problems it may be
easier just to write a small script and have B<parallel> call that easier just to write a small script and have B<parallel> call that
script. script.
@ -240,19 +254,24 @@ cat | tr '\n' '\0' | xargs -0 -n1 I<command>
B<xargs> can run a given number of jobs in parallel, but has no B<xargs> can run a given number of jobs in parallel, but has no
support for running no_of_cpus jobs in parallel. support for running no_of_cpus jobs in parallel.
B<xargs> has no support for grouping the output, so output may run B<xargs> has no support for grouping the output, therefore output may
together, so the first half of a line is from one process and the last run together, e.g. the first half of a line is from one process and
half of the line is from another process. the last half of the line is from another process.
If no command is given to B<xargs> it defaults to /bin/echo. So the If no command is given to B<xargs> it defaults to /bin/echo. So the
B<cat | sh> functionality is missing. B<cat | sh> functionality is missing.
Quoting in B<xargs> works like B<-q> in B<parallel>. Doing B<ls |
parallel "wc {} >> B<{}.wc"> using B<xargs> seems to be impossible.
=head1 BUGS =head1 BUGS
Filenames beginning with '-' can cause some commands to give Filenames beginning with '-' can cause some commands to give
unexpected results, as it will often be interpreted as an option. unexpected results, as it will often be interpreted as an option.
If you have a lot of filehandles, then computing the max no
takes a long time.
=head1 REPORTING BUGS =head1 REPORTING BUGS
@ -261,7 +280,8 @@ Report bugs to <bug-parallel@tange.dk>.
=head1 AUTHOR =head1 AUTHOR
Copyright (C) 2007 Ole Tange, http://ole.tange.dk Copyright (C) 2007-10-18 Ole Tange, http://ole.tange.dk
Copyright (C) 2008-2009 Ole Tange, http://ole.tange.dk
=head1 LICENSE =head1 LICENSE
@ -294,6 +314,7 @@ B<find>(1), B<xargs>(1)
=cut =cut
use IPC::Open3; use IPC::Open3;
use Symbol qw(gensym); use Symbol qw(gensym);
use IO::File; use IO::File;
@ -316,6 +337,7 @@ $/="\n";
$Global::debug = (defined $::opt_d); $Global::debug = (defined $::opt_d);
if(defined $::opt_j) { $processes = compute_number_of_processes($::opt_j); } if(defined $::opt_j) { $processes = compute_number_of_processes($::opt_j); }
if(defined $::opt_x) { $Global::xargs = 1; }
if(defined $::opt_v) { $Global::verbose = 1; } if(defined $::opt_v) { $Global::verbose = 1; }
if(defined $::opt_s) { $Global::verbose = 0; } if(defined $::opt_s) { $Global::verbose = 0; }
if(defined $::opt_g) { $Global::grouped = 1; } if(defined $::opt_g) { $Global::grouped = 1; }
@ -326,17 +348,20 @@ if(defined $::opt_0) { $/ = "\0"; }
if(defined $::opt_q) { $Global::quoting = 1; } if(defined $::opt_q) { $Global::quoting = 1; }
if(@ARGV) { if(@ARGV) {
if($Global::quoting) { if($Global::quoting) {
$command = join(" ", shell_quote(@ARGV)); $Global::command = join(" ", shell_quote(@ARGV));
} else { } else {
$command = join(" ", @ARGV); $Global::command = join(" ", @ARGV);
} }
} }
init_run_jobs(); init_run_jobs();
while($args = <STDIN>) { DoNotReap();
my $cmd_line = generate_command_line($command, $args); while($Global::running_jobs < $processes
queue_job($processes, $cmd_line); and
start_another_job()) {
# skip
} }
ReapIfNeeded();
drain_job_queue(); drain_job_queue();
# #
@ -345,12 +370,15 @@ drain_job_queue();
sub generate_command_line { sub generate_command_line {
my $command = shift; my $command = shift;
my $line = shift; my @args = @_;
chomp($line); chomp(@args);
my ($job_line,$arg);
if($Global::input_is_filename) { if($Global::input_is_filename) {
($line) = (shell_quote($line)); for my $arg (@args) {
($arg) = (shell_quote($arg));
} }
}
my $line = join(" ",@args);
my ($job_line,$arg);
if($command) { if($command) {
$job_line = $command; $job_line = $command;
$arg = $line; $arg = $line;
@ -385,9 +413,13 @@ sub shell_quote {
} }
# #
# Number of processes # Number of processes, filehandles, max length of command line
# #
sub max_length_of_command_line {
}
sub compute_number_of_processes { sub compute_number_of_processes {
my $opt_j = shift; my $opt_j = shift;
my $processes = 0; my $processes = 0;
@ -416,13 +448,16 @@ sub compute_number_of_processes {
$processes = 1; $processes = 1;
} }
} }
my $free_handles = compute_no_of_free_filehandles();
if($processes > $free_handles / 2) {
# Every simultaneous process uses 2 filehandles when grouping # Every simultaneous process uses 2 filehandles when grouping
# perl uses 7 for something? # perl uses 7 for something?
$processes = int (($free_handles -7) / 2); # parallel uses 1 for memory_usage
my $file_handles_needed = $processes*2+7+1;
my $free_handles = compute_no_of_free_filehandles($file_handles_needed);
if($file_handles_needed > $free_handles) {
$processes = int (($free_handles -7 -1) / 2);
print STDERR ("Warning: Only enough filehandles to run ", print STDERR ("Warning: Only enough filehandles to run ",
$processes, " jobs in parallel\n"); $processes, " jobs in parallel. ",
"Raising ulimit -n may help\n");
} }
debug("Computed processes: ".(int $processes)."\n"); debug("Computed processes: ".(int $processes)."\n");
@ -430,11 +465,12 @@ sub compute_number_of_processes {
} }
sub compute_no_of_free_filehandles { sub compute_no_of_free_filehandles {
my $needed = shift;
my $i=1; my $i=1;
my %fh; my %fh;
while(open($fh{$i},"</dev/null")) { $i++ } while(open($fh{$i},"</dev/null")) { $i++; $i > $needed and last }
for (keys %fh) { close $fh{$_} } for (keys %fh) { close $fh{$_} }
debug("Number of free handles: ".."\n"); debug("Number of free handles: ".$i."\n");
return $i; return $i;
} }
@ -491,42 +527,21 @@ sub init_run_jobs {
$Global::running_jobs=0; $Global::running_jobs=0;
} }
sub queue_job { sub next_command_line {
my $processes = shift; my $cmd_line;
my $command = shift; do {
if(eof STDIN) {
if($command =~ /\S/) { return undef;
# Only run commands - not empty lines
push @Global::command, $command;
}
if($Global::running_jobs < $processes) {
debug("queing $command\n");
start_another_job();
debug("queued $command\n");
} }
my $args = <STDIN>;
$cmd_line = generate_command_line($Global::command, $args);
} while ($cmd_line =~ /^\s*$/); # Skip empty lines
return $cmd_line;
} }
sub drain_job_queue { sub drain_job_queue {
while(1) { while($Global::running_jobs > 0) {
if($Global::running_jobs == 0) { last } debug("jobs running: $Global::running_jobs Memory usage:".my_memory_usage()."\n");
debug("jobs running: $Global::running_jobs\n");
sleep 1;
}
}
sub run_jobs {
# Run the jobs in @Global::command with $processes simultaneously
my $processes = shift;
for my $i (1..$processes) {
# Start $processes jobs.
# When a job dies, the handler will take care of starting another
start_another_job();
}
while(1) {
if($Global::running_jobs == 0) { last }
debug("jobs running: $Global::running_jobs\n");
sleep 1; sleep 1;
} }
} }
@ -535,12 +550,13 @@ sub start_another_job {
# Grab a job from @Global::command, start it # Grab a job from @Global::command, start it
# and remember the pid, the STDOUT and the STDERR handles # and remember the pid, the STDOUT and the STDERR handles
# If no more jobs: do nothing # If no more jobs: do nothing
my $command = shift @Global::command; my $command = next_command_line();
if(defined $command) { if(defined $command) {
DoNotReap();
my %jobinfo = start_job($command); my %jobinfo = start_job($command);
$Global::running{$jobinfo{"pid"}} = \%jobinfo; $Global::running{$jobinfo{"pid"}} = \%jobinfo;
ReapIfNeeded(); return 1;
} else {
return 0;
} }
} }
@ -567,9 +583,9 @@ sub start_job {
print STDOUT $command,"\n"; print STDOUT $command,"\n";
} }
$Global::running_jobs++; $Global::running_jobs++;
debug("starting: $command\n"); debug("$Global::running_jobs processes. Starting: $command\n");
$pid = open3(gensym, ">&STDOUT", ">&STDERR", $command) || $pid = open3(gensym, ">&STDOUT", ">&STDERR", $command) ||
die("open3 failed. Report a bug\n"); die("open3 failed. Report a bug to <parallel\@tange.dk>\n");
debug("started: $command\n"); debug("started: $command\n");
open STDOUT, ">&", $Global::original_stdout or die "Can't dup \$oldout: $!"; open STDOUT, ">&", $Global::original_stdout or die "Can't dup \$oldout: $!";
open STDERR, ">&", $Global::original_stderr or die "Can't dup \$oldout: $!"; open STDERR, ">&", $Global::original_stderr or die "Can't dup \$oldout: $!";
@ -593,7 +609,7 @@ sub print_job {
my $err = $fhs->{err}; my $err = $fhs->{err};
my $command = $fhs->{command}; my $command = $fhs->{command};
debug(">>job\n"); debug(">>joboutput $command\n");
if($Global::verbose and $Global::grouped) { if($Global::verbose and $Global::grouped) {
print STDOUT $command,"\n"; print STDOUT $command,"\n";
# If STDOUT and STDERR is merged, we want the command to be printed first # If STDOUT and STDERR is merged, we want the command to be printed first
@ -605,10 +621,10 @@ sub print_job {
while( <$err> ) { print STDERR "ERR: $_" } while( <$err> ) { print STDERR "ERR: $_" }
while( <$out> ) { print STDOUT "OUT: $_" } while( <$out> ) { print STDOUT "OUT: $_" }
} else { } else {
while( <$err> ) { print STDERR } print STDERR <$err>;
while( <$out> ) { print STDOUT } print STDOUT <$out>;
} }
debug("<<job\n"); debug("<<joboutput $command\n");
close $out; close $out;
close $err; close $err;
} }
@ -642,8 +658,9 @@ sub Reaper {
# Print the output. # Print the output.
# Start another job # Start another job
DoNotReap(); DoNotReap();
$Global::reaperlevel++;
my $stiff; my $stiff;
debug("Reaper called\n"); debug("Reaper called $Global::reaperlevel\n");
while (($stiff = waitpid(-1, &WNOHANG)) > 0) { while (($stiff = waitpid(-1, &WNOHANG)) > 0) {
print_job($Global::running{$stiff}); print_job($Global::running{$stiff});
delete $Global::running{$stiff}; delete $Global::running{$stiff};
@ -651,6 +668,8 @@ sub Reaper {
start_another_job(); start_another_job();
} }
ReapIfNeeded(); ReapIfNeeded();
debug("Reaper exit $Global::reaperlevel\n");
$Global::reaperlevel--;
} }
# #
@ -680,6 +699,33 @@ sub debug {
} }
} }
sub my_memory_usage {
use strict;
use FileHandle;
my $pid = $$;
my $fh = FileHandle->new("</proc/$pid/stat");
my $data = <$fh>;
chomp $data;
$fh->close;
my @procinfo = split(/\s+/,$data);
return $procinfo[22];
}
sub my_size {
my @size_this = (@_);
eval "use Devel::Size qw(size total_size)";
if ($@) {
return -1;
} else {
return total_size(@_);
}
}
sub my_dump { sub my_dump {
my @dump_this = (@_); my @dump_this = (@_);
eval "use Data::Dump qw(dump);"; eval "use Data::Dump qw(dump);";
@ -703,7 +749,7 @@ sub my_dump {
# Keep perl -w happy # Keep perl -w happy
$main::opt_u = $main::opt_c = $main::opt_f = $main::opt_q = $main::opt_u = $main::opt_c = $main::opt_f = $main::opt_q =
$main::opt_0 = $main::opt_s = $main::opt_v = $main::opt_g = $main::opt_0 = $main::opt_s = $main::opt_v = $main::opt_g =
$main::opt_j = $main::opt_d=1; $main::opt_j = $main::opt_d = $main::opt_x =1;
$Global::xargs = 1;

View file

@ -1,15 +1,7 @@
.\" Automatically generated by Pod::Man v1.37, Pod::Parser v1.32 .\" Automatically generated by Pod::Man 2.18 (Pod::Simple 3.05)
.\" .\"
.\" Standard preamble: .\" Standard preamble:
.\" ======================================================================== .\" ========================================================================
.de Sh \" Subsection heading
.br
.if t .Sp
.ne 5
.PP
\fB\\$1\fR
.PP
..
.de Sp \" Vertical space (when we can't use .PP) .de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v .if t .sp .5v
.if n .sp .if n .sp
@ -48,22 +40,25 @@
. ds R" '' . ds R" ''
'br\} 'br\}
.\" .\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is turned on, we'll generate index entries on stderr for .\" If the F register is turned on, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the .\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion. .\" output yourself in some meaningful fashion.
.if \nF \{\ .ie \nF \{\
. de IX . de IX
. tm Index:\\$1\t\\n%\t"\\$2" . tm Index:\\$1\t\\n%\t"\\$2"
.. ..
. nr % 0 . nr % 0
. rr F . rr F
.\} .\}
.\" .el \{\
.\" For nroff, turn off justification. Always turn off hyphenation; it makes . de IX
.\" way too many mistakes in technical documents. ..
.hy 0 .\}
.if n .na
.\" .\"
.\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2). .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
.\" Fear. Run. Save yourself. No user-serviceable parts. .\" Fear. Run. Save yourself. No user-serviceable parts.
@ -129,7 +124,11 @@
.\" ======================================================================== .\" ========================================================================
.\" .\"
.IX Title "PARALLEL 1" .IX Title "PARALLEL 1"
.TH PARALLEL 1 "2007-09-14" "perl v5.8.8" "User Contributed Perl Documentation" .TH PARALLEL 1 "2009-02-17" "perl v5.10.0" "User Contributed Perl Documentation"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME" .SH "NAME"
parallel \- build and execute command lines from standard input in parallel parallel \- build and execute command lines from standard input in parallel
.SH "SYNOPSIS" .SH "SYNOPSIS"
@ -204,6 +203,9 @@ output from different commands to be mixed. Can be reversed with \fB\-g\fR.
.IP "\fB\-v\fR" 9 .IP "\fB\-v\fR" 9
.IX Item "-v" .IX Item "-v"
Verbose. Print the job to be run. Can be reversed with \fB\-s\fR. Verbose. Print the job to be run. Can be reversed with \fB\-s\fR.
.IP "\fB\-x\fR" 9
.IX Item "-x"
xargs. Insert as many arguments as the command line length permits.
.SH "EXAMPLE 1: Working as cat | sh. Ressource inexpensive jobs and evaluation" .SH "EXAMPLE 1: Working as cat | sh. Ressource inexpensive jobs and evaluation"
.IX Header "EXAMPLE 1: Working as cat | sh. Ressource inexpensive jobs and evaluation" .IX Header "EXAMPLE 1: Working as cat | sh. Ressource inexpensive jobs and evaluation"
\&\fBparallel\fR can work similar to \fBcat | sh\fR. \&\fBparallel\fR can work similar to \fBcat | sh\fR.
@ -264,8 +266,8 @@ thumb_./foo/bar.jpg\fR would clearly be wrong). It will result in files
like ./foo/bar.jpg_thumb.jpg. If that is not wanted this can fix it: like ./foo/bar.jpg_thumb.jpg. If that is not wanted this can fix it:
.PP .PP
.Vb 3 .Vb 3
\& find . \-name '*.jpg' | \e \& find . \-name \*(Aq*.jpg\*(Aq | \e
\& perl \-pe 'chomp; $a=$_; s:/([^/]+)$:/thumb_$1:; $_="convert \-geometry 120 $a $_\en"' | \e \& perl \-pe \*(Aqchomp; $a=$_; s:/([^/]+)$:/thumb_$1:; $_="convert \-geometry 120 $a $_\en"\*(Aq | \e
\& parallel \-c \-j +0 \& parallel \-c \-j +0
.Ve .Ve
.PP .PP
@ -274,8 +276,8 @@ characters (such as space or quotes). If you have \fBren\fR installed this
is a better solution: is a better solution:
.PP .PP
.Vb 2 .Vb 2
\& find . \-name '*.jpg' | parallel \-j +0 convert \-geometry 120 {} {}_thumb.jpg \& find . \-name \*(Aq*.jpg\*(Aq | parallel \-j +0 convert \-geometry 120 {} {}_thumb.jpg
\& find . \-name '*_thumb.jpg' | ren 's:/([^/]+)_thumb.jpg$:/thumb_$1:' \& find . \-name \*(Aq*_thumb.jpg\*(Aq | ren \*(Aqs:/([^/]+)_thumb.jpg$:/thumb_$1:\*(Aq
.Ve .Ve
.SH "EXAMPLE 4: Substitution and redirection" .SH "EXAMPLE 4: Substitution and redirection"
.IX Header "EXAMPLE 4: Substitution and redirection" .IX Header "EXAMPLE 4: Substitution and redirection"
@ -294,6 +296,10 @@ A job can consist of several commands. This will print the number of
files in each directory: files in each directory:
.PP .PP
\&\fBls | parallel 'echo \-n {}\*(L" \*(R"; ls {}|wc \-l'\fR \&\fBls | parallel 'echo \-n {}\*(L" \*(R"; ls {}|wc \-l'\fR
.PP
To put the output in a file called <name>.dir:
.PP
\&\fBls | parallel '(echo \-n {}\*(L" \*(R"; ls {}|wc \-l) \fR>\fB {}.dir'\fR
.SH "QUOTING" .SH "QUOTING"
.IX Header "QUOTING" .IX Header "QUOTING"
For more advanced use quoting may be an issue. The following will For more advanced use quoting may be an issue. The following will
@ -317,6 +323,12 @@ characters. For example this \fBwill not work\fR:
.PP .PP
because > needs to be interpreted by the shell. because > needs to be interpreted by the shell.
.PP .PP
If you get errors like:
.PP
\&\fBsh: \-c: line 0: syntax error near unexpected token\fR
.PP
then you might try using \fB\-q\fR.
.PP
\&\fBConclusion\fR: To avoid dealing with the quoting problems it may be \&\fBConclusion\fR: To avoid dealing with the quoting problems it may be
easier just to write a small script and have \fBparallel\fR call that easier just to write a small script and have \fBparallel\fR call that
script. script.
@ -347,22 +359,37 @@ cat | tr '\en' '\e0' | xargs \-0 \-n1 \fIcommand\fR
\&\fBxargs\fR can run a given number of jobs in parallel, but has no \&\fBxargs\fR can run a given number of jobs in parallel, but has no
support for running no_of_cpus jobs in parallel. support for running no_of_cpus jobs in parallel.
.PP .PP
\&\fBxargs\fR has no support for grouping the output, so output may run \&\fBxargs\fR has no support for grouping the output, therefore output may
together, so the first half of a line is from one process and the last run together, e.g. the first half of a line is from one process and
half of the line is from another process. the last half of the line is from another process.
.PP .PP
If no command is given to \fBxargs\fR it defaults to /bin/echo. So the If no command is given to \fBxargs\fR it defaults to /bin/echo. So the
\&\fBcat | sh\fR functionality is missing. \&\fBcat | sh\fR functionality is missing.
.PP
Quoting in \fBxargs\fR works like \fB\-q\fR in \fBparallel\fR. Doing \fBls |
parallel "wc {} \fR> \fB{}.wc"\fR using \fBxargs\fR seems to be impossible.
.SH "BUGS" .SH "BUGS"
.IX Header "BUGS" .IX Header "BUGS"
Filenames beginning with '\-' can cause some commands to give Filenames beginning with '\-' can cause some commands to give
unexpected results, as it will often be interpreted as an option. unexpected results, as it will often be interpreted as an option.
.PP
This takes up all memory:
.PP
.Vb 1
\& seq 1 1000000000 | parallel very_loong_command
.Ve
.PP
Should be fixed by only generating a new command when needed
(i.e. when a command has finished).
.PP
If you have a lot of filehandles, then computing the max no
takes a long time.
.SH "REPORTING BUGS" .SH "REPORTING BUGS"
.IX Header "REPORTING BUGS" .IX Header "REPORTING BUGS"
Report bugs to <bug\-parallel@tange.dk>. Report bugs to <bug\-parallel@tange.dk>.
.SH "AUTHOR" .SH "AUTHOR"
.IX Header "AUTHOR" .IX Header "AUTHOR"
Copyright (C) 2007 Ole Tange, http://ole.tange.dk Copyright (C) 2007\-10\-18 Ole Tange, http://ole.tange.dk
.SH "LICENSE" .SH "LICENSE"
.IX Header "LICENSE" .IX Header "LICENSE"
Copyright (C) 2007 Free Software Foundation, Inc. Copyright (C) 2007 Free Software Foundation, Inc.

View file

@ -1,13 +1,13 @@
. .
./中国 (Zhōngguó)
./中国 (Zhōngguó)/thumb_China's (中国) road.jpg
./中国 (Zhōngguó)/China's (中国) road.jpg
./a ./a
./a/foo2 ./a/foo2
./a/foo
./a/bar ./a/bar
./2-col.txt ./a/foo
./b ./b
./b/foo
./b/bar ./b/bar
./b/foo
./2-col.txt
./中国 (Zhōngguó)
./中国 (Zhōngguó)/China's (中国) road.jpg
./中国 (Zhōngguó)/thumb_China's (中国) road.jpg
./1-col.txt ./1-col.txt

View file

@ -4,5 +4,5 @@ Removing files
4e2ffc66811f839854f2f0071c1e0541 - 4e2ffc66811f839854f2f0071c1e0541 -
There are 6246 dirs with files There are 6246 dirs with files
Removing dirs Removing dirs
14e628fb222c872cf383280269b2397f - 1c91bf0327094531133e6ad95d2e23f5 -
There are 1 dirs with files There are 1 dirs with files

View file

@ -0,0 +1,2 @@
b
d

View file

@ -0,0 +1,3 @@
flyp
_PRE 8
hatchname> 8

View file

@ -0,0 +1,3 @@
flyp
_PRE 9
hatchname> 8

View file

@ -0,0 +1,3 @@
flyp
_PRE 19
hatchname> 19

View file

@ -0,0 +1,4 @@
flyp
_PRE 19
hatchname> 9

View file

@ -0,0 +1,5 @@
#!/bin/bash
cd input-files/test08
ls | parallel -q perl -ne '/_PRE (\d+)/ and $p=$1; /hatchname> (\d+)/ and $1!=$p and print $ARGV,"\n"'

View file

@ -1,13 +1,13 @@
. .
./中国 (Zhōngguó)
./中国 (Zhōngguó)/thumb_China's (中国) road.jpg
./中国 (Zhōngguó)/China's (中国) road.jpg
./a ./a
./a/foo2 ./a/foo2
./a/foo
./a/bar ./a/bar
./2-col.txt ./a/foo
./b ./b
./b/foo
./b/bar ./b/bar
./b/foo
./2-col.txt
./中国 (Zhōngguó)
./中国 (Zhōngguó)/China's (中国) road.jpg
./中国 (Zhōngguó)/thumb_China's (中国) road.jpg
./1-col.txt ./1-col.txt

View file

@ -4,5 +4,5 @@ Removing files
4e2ffc66811f839854f2f0071c1e0541 - 4e2ffc66811f839854f2f0071c1e0541 -
There are 6246 dirs with files There are 6246 dirs with files
Removing dirs Removing dirs
14e628fb222c872cf383280269b2397f - 1c91bf0327094531133e6ad95d2e23f5 -
There are 1 dirs with files There are 1 dirs with files

View file

@ -0,0 +1,2 @@
b
d