mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 14:07:55 +00:00
Fixed bug #45998: --pipe to function broken.
This commit is contained in:
parent
f4addae676
commit
0c7f6c91e6
|
@ -237,12 +237,16 @@ New in this release:
|
||||||
|
|
||||||
* <<kontaktet 2015-06-22 Afventer svar fra journal>> GNU Parallel was used (unfortunately with wrong citation) in: TADSim: Discrete Event-Based Performance Prediction for Temperature-Accelerated Dynamics http://vruehle.de/publications/2015c.pdf
|
* <<kontaktet 2015-06-22 Afventer svar fra journal>> GNU Parallel was used (unfortunately with wrong citation) in: TADSim: Discrete Event-Based Performance Prediction for Temperature-Accelerated Dynamics http://vruehle.de/publications/2015c.pdf
|
||||||
|
|
||||||
|
* Third-party selling GNU Parallel T-shirts http://www.aliexpress.com/item/2015F-BSO-GNU-LOGO-GNU-PARALLEL-men-s-shirt-sleeve-visual-illusion-error/32464827966.html
|
||||||
|
|
||||||
* Joys of gnu parallel http://scottolesen.com/index.php/2015/08/26/joys-of-gnu-parallel/
|
* Joys of gnu parallel http://scottolesen.com/index.php/2015/08/26/joys-of-gnu-parallel/
|
||||||
|
|
||||||
* Crop and resize images with bash and ImageMagick https://www.simonholywell.com/post/2015/08/image-resize-crop-bash-imagemagick/
|
* Crop and resize images with bash and ImageMagick https://www.simonholywell.com/post/2015/08/image-resize-crop-bash-imagemagick/
|
||||||
|
|
||||||
* Three Ways to Script Processes in Parallel http://www.codeword.xyz/2015/09/02/three-ways-to-script-processes-in-parallel/
|
* Three Ways to Script Processes in Parallel http://www.codeword.xyz/2015/09/02/three-ways-to-script-processes-in-parallel/
|
||||||
|
|
||||||
|
* What It Looks Like to Process 3.5 Million Books http://blog.gdeltproject.org/what-it-looks-like-to-process-3-5-million-books/
|
||||||
|
|
||||||
* L’Exploration De Données Twitter http://blog.inovia-conseil.fr/?p=233
|
* L’Exploration De Données Twitter http://blog.inovia-conseil.fr/?p=233
|
||||||
|
|
||||||
* Bug fixes and man page updates.
|
* Bug fixes and man page updates.
|
||||||
|
|
|
@ -6006,7 +6006,7 @@ sub empty_input_wrapper {
|
||||||
# Returns:
|
# Returns:
|
||||||
# $wrapped_command = the wrapped command
|
# $wrapped_command = the wrapped command
|
||||||
my $command = shift;
|
my $command = shift;
|
||||||
my $script = '$c="'.::perl_quote_scalar($command).'";'.
|
my $script = '$c="'.::perl_quote_scalar($Global::shell." -c ".::shell_quote_scalar($command)).'";'.
|
||||||
::spacefree(0,q{
|
::spacefree(0,q{
|
||||||
if(sysread(STDIN, $buf, 1)) {
|
if(sysread(STDIN, $buf, 1)) {
|
||||||
open($fh, "|-", $c) || die;
|
open($fh, "|-", $c) || die;
|
||||||
|
|
|
@ -206,6 +206,12 @@ echo '### bug #45939: {2} in {= =} fails'
|
||||||
parallel echo '{= s/O{2}//=}' ::: OOOK
|
parallel echo '{= s/O{2}//=}' ::: OOOK
|
||||||
parallel echo '{2}-{=1 s/O{2}//=}' ::: OOOK ::: OK
|
parallel echo '{2}-{=1 s/O{2}//=}' ::: OOOK ::: OK
|
||||||
|
|
||||||
|
echo '**'
|
||||||
|
|
||||||
|
echo '### bug #45998: --pipe to function broken'
|
||||||
|
myfunc() { echo $1; cat; }; export -f myfunc; echo OK | parallel --pipe myfunc {#}
|
||||||
|
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
echo '### 1 .par file from --files expected'
|
echo '### 1 .par file from --files expected'
|
||||||
find /tmp{/*,}/*.{par,tms,tmx} 2>/dev/null -mmin -10 | wc -l
|
find /tmp{/*,}/*.{par,tms,tmx} 2>/dev/null -mmin -10 | wc -l
|
||||||
|
|
|
@ -436,5 +436,12 @@ parallel echo '{= s/O{2}//=}' ::: OOOK
|
||||||
OK
|
OK
|
||||||
parallel echo '{2}-{=1 s/O{2}//=}' ::: OOOK ::: OK
|
parallel echo '{2}-{=1 s/O{2}//=}' ::: OOOK ::: OK
|
||||||
OK-OK
|
OK-OK
|
||||||
|
echo '**'
|
||||||
|
**
|
||||||
|
echo '### bug #45998: --pipe to function broken'
|
||||||
|
### bug #45998: --pipe to function broken
|
||||||
|
myfunc() { echo $1; cat; }; export -f myfunc; echo OK | parallel --pipe myfunc {#}
|
||||||
|
1
|
||||||
|
OK
|
||||||
### 1 .par file from --files expected
|
### 1 .par file from --files expected
|
||||||
1
|
1
|
||||||
|
|
Loading…
Reference in a new issue