mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-12-23 13:17:54 +00:00
parallel.pod: Elaborated more on dangers with -u.
This commit is contained in:
parent
29726eee6e
commit
aad8d689ba
|
@ -537,7 +537,7 @@ sub get_options_from_array {
|
||||||
sub parse_options {
|
sub parse_options {
|
||||||
# Returns: N/A
|
# Returns: N/A
|
||||||
# Defaults:
|
# Defaults:
|
||||||
$Global::version = 20120422;
|
$Global::version = 20120503;
|
||||||
$Global::progname = 'parallel';
|
$Global::progname = 'parallel';
|
||||||
$Global::infinity = 2**31;
|
$Global::infinity = 2**31;
|
||||||
$Global::debug = 0;
|
$Global::debug = 0;
|
||||||
|
|
|
@ -1305,8 +1305,9 @@ a bc " -> "a bc". This is the default if B<--colsep> is used.
|
||||||
=item B<-u>
|
=item B<-u>
|
||||||
|
|
||||||
Ungroup output. Output is printed as soon as possible and by passes
|
Ungroup output. Output is printed as soon as possible and by passes
|
||||||
GNU B<parallel> internal processing. This may cause
|
GNU B<parallel> internal processing. This may cause output from
|
||||||
output from different commands to be mixed. Compare these:
|
different commands to be mixed thus should only be used if you do not
|
||||||
|
care about the output. Compare these:
|
||||||
|
|
||||||
B<parallel -j0 'sleep {};echo -n start{};sleep {};echo {}end' ::: 1 2 3 4>
|
B<parallel -j0 'sleep {};echo -n start{};sleep {};echo {}end' ::: 1 2 3 4>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue