mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
Bugfix: make -j2 fails because 'rm pod2htm*' fails.
This commit is contained in:
parent
d2a872b641
commit
8f9038909a
|
@ -12,11 +12,11 @@ sem.1: sem.pod Makefile
|
||||||
|
|
||||||
parallel.html: parallel Makefile
|
parallel.html: parallel Makefile
|
||||||
pod2html $(srcdir)/parallel > $(srcdir)/parallel.html
|
pod2html $(srcdir)/parallel > $(srcdir)/parallel.html
|
||||||
rm $(srcdir)/pod2htm*
|
rm -f $(srcdir)/pod2htm*
|
||||||
|
|
||||||
sem.html: sem.pod Makefile
|
sem.html: sem.pod Makefile
|
||||||
pod2html $(srcdir)/sem.pod > $(srcdir)/sem.html
|
pod2html $(srcdir)/sem.pod > $(srcdir)/sem.html
|
||||||
rm $(srcdir)/pod2htm*
|
rm -f $(srcdir)/pod2htm*
|
||||||
|
|
||||||
sem: parallel
|
sem: parallel
|
||||||
ln -s parallel sem
|
ln -s parallel sem
|
||||||
|
|
|
@ -1234,6 +1234,11 @@ With the file I<mycomputers> containing the list of computers it becomes:
|
||||||
find logs/ -name '*.gz' | parallel --sshloginfile mycomputers \
|
find logs/ -name '*.gz' | parallel --sshloginfile mycomputers \
|
||||||
--trc {.}.bz2 "zcat {} | bzip2 -9 >{.}.bz2"
|
--trc {.}.bz2 "zcat {} | bzip2 -9 >{.}.bz2"
|
||||||
|
|
||||||
|
If the file I<~/.parallel/sshloginfile> contains the list of computers
|
||||||
|
the special short hand I<-S ..> can be used:
|
||||||
|
|
||||||
|
find logs/ -name '*.gz' | parallel -S .. \
|
||||||
|
--trc {.}.bz2 "zcat {} | bzip2 -9 >{.}.bz2"
|
||||||
|
|
||||||
=head1 EXAMPLE: Distributing work to local and remote computers
|
=head1 EXAMPLE: Distributing work to local and remote computers
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue