parallel.pod: Fixed bug #45450: man pages encourage gender binary.

This commit is contained in:
Ole Tange 2015-07-01 04:46:32 +02:00
parent dcc18d38f5
commit ff048f5337
6 changed files with 9 additions and 5 deletions

0
doc/pod2savannah_publicinfo Executable file → Normal file
View file

View file

@ -232,10 +232,14 @@ New in this release:
* << Update forventet juni Rachel har lige svaret >> GNU Parallel was used in: SISRS: Site Identification from Short Read Sequences https://github.com/rachelss/SISRS/ * << Update forventet juni Rachel har lige svaret >> GNU Parallel was used in: SISRS: Site Identification from Short Read Sequences https://github.com/rachelss/SISRS/
* GNU Parallel was cited in: A Fast Compiler for NetKAT http://arxiv.org/pdf/1506.06378.pdf
* GNU Parallel was cited in: Decomposing Time-Lapse Paintings into Layers http://cs.gmu.edu/~ygingold/timemap/Decomposing%20Time-Lapse%20Paintings%20into%20Layers%20(Tan%20et%20al%202015%20SIGGRAPH)%20600dpi.pdf * GNU Parallel was cited in: Decomposing Time-Lapse Paintings into Layers http://cs.gmu.edu/~ygingold/timemap/Decomposing%20Time-Lapse%20Paintings%20into%20Layers%20(Tan%20et%20al%202015%20SIGGRAPH)%20600dpi.pdf
* GNU Parallel was used in: Somatic mutation calling from the matched tumor-normal exome-sequencing http://fafner.meb.ki.se/biostatwiki/somac/ * GNU Parallel was used in: Somatic mutation calling from the matched tumor-normal exome-sequencing http://fafner.meb.ki.se/biostatwiki/somac/
* Parallel Processing from the Command Line https://www.perpetual-beta.org/weblog/parallel-processing-from-the-command-line.html
* Using GNU Parallel to speed up network operations http://vielmetti.typepad.com/vacuum/2015/06/using-gnu-parallel-to-speed-up-network-operations.html * Using GNU Parallel to speed up network operations http://vielmetti.typepad.com/vacuum/2015/06/using-gnu-parallel-to-speed-up-network-operations.html
* Simultaneously benchmark many URLs with ApacheBench and GNU parallel https://www.simonholywell.com/post/2015/06/parallel-benchmark-many-urls-with-apachebench/ * Simultaneously benchmark many URLs with ApacheBench and GNU parallel https://www.simonholywell.com/post/2015/06/parallel-benchmark-many-urls-with-apachebench/

0
packager/debian/debian-template/rules Executable file → Normal file
View file

View file

@ -1082,7 +1082,7 @@ sub parse_options {
sub init_globals { sub init_globals {
# Defaults: # Defaults:
$Global::version = 20150623; $Global::version = 20150630;
$Global::progname = 'parallel'; $Global::progname = 'parallel';
$Global::infinity = 2**31; $Global::infinity = 2**31;
$Global::debug = 0; $Global::debug = 0;

View file

@ -2620,15 +2620,15 @@ can be written like this:
Nested for-loops like this: Nested for-loops like this:
(for gender in M F ; do (for colour in red green blue ; do
for size in S M L XL XXL ; do for size in S M L XL XXL ; do
echo $gender $size echo $colour $size
done done
done) | sort done) | sort
can be written like this: can be written like this:
parallel echo {1} {2} ::: M F ::: S M L XL XXL | sort parallel echo {1} {2} ::: red green blue ::: S M L XL XXL | sort
=head1 EXAMPLE: Finding the lowest difference between files =head1 EXAMPLE: Finding the lowest difference between files
@ -2650,7 +2650,7 @@ the loop variable if is is named instead of just having a number. Use
B<--header :> to let the first argument be an named alias for the B<--header :> to let the first argument be an named alias for the
positional replacement string: positional replacement string:
parallel --header : echo {gender} {size} ::: gender M F ::: size S M L XL parallel --header : echo {colour} {size} ::: colour red green blue ::: size S M L XL XXL
This also works if the input file is a file with columns: This also works if the input file is a file with columns:

0
src/sem.pod Executable file → Normal file
View file