mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 22:17:54 +00:00
Version update. Small --tty test.
This commit is contained in:
parent
e3e1345aac
commit
d847c932f5
|
@ -171,15 +171,24 @@ cc:Sandro Cazzaniga <kharec@mandriva.org>,
|
||||||
Ryoichiro Suzuki <ryoichiro.suzuki@gmail.com>,
|
Ryoichiro Suzuki <ryoichiro.suzuki@gmail.com>,
|
||||||
Jesse Alama <jesse.alama@gmail.com>
|
Jesse Alama <jesse.alama@gmail.com>
|
||||||
|
|
||||||
Subject: GNU Parallel 20121222 ('End of The World') released
|
Subject: GNU Parallel 20130122 ('') released
|
||||||
|
|
||||||
GNU Parallel 20121222 ('End of The World') has been released. It is
|
GNU Parallel 20130122 ('') has been released. It is
|
||||||
available for download at: http://ftp.gnu.org/gnu/parallel/
|
available for download at: http://ftp.gnu.org/gnu/parallel/
|
||||||
|
|
||||||
New in this release:
|
New in this release:
|
||||||
|
|
||||||
* Mahout: Parallelising the creation of DecisionTrees
|
* Official OpenBSD port:
|
||||||
http://www.markhneedham.com/blog/2012/12/27/mahout-parallelising-the-creation-of-decisiontrees/
|
http://ftp.openbsd.org/ports/sysutils/parallel/
|
||||||
|
|
||||||
|
* Official DragonFlyBSD package:
|
||||||
|
http://www.mirrorservice.org/sites/ftp.dragonflybsd.org/packages/amd64/DragonFly-3.0.0/stable/parallel/
|
||||||
|
|
||||||
|
* Post about niceload in Hungarian:
|
||||||
|
http://commandline.blog.hu/2013/01/02/niceload
|
||||||
|
|
||||||
|
* GNU parallel+ssh で複数のリモートホストに複数のコマンドを実行させる
|
||||||
|
http://oshiire.to/archives/1686
|
||||||
|
|
||||||
* Bug fixes and man page updates.
|
* Bug fixes and man page updates.
|
||||||
|
|
||||||
|
|
|
@ -617,7 +617,7 @@ sub get_options_from_array {
|
||||||
sub parse_options {
|
sub parse_options {
|
||||||
# Returns: N/A
|
# Returns: N/A
|
||||||
# Defaults:
|
# Defaults:
|
||||||
$Global::version = 20121222;
|
$Global::version = 20130109;
|
||||||
$Global::progname = 'parallel';
|
$Global::progname = 'parallel';
|
||||||
$Global::infinity = 2**31;
|
$Global::infinity = 2**31;
|
||||||
$Global::debug = 0;
|
$Global::debug = 0;
|
||||||
|
|
6
testsuite/tests-to-run/parallel-local-ssh1.sh
Normal file
6
testsuite/tests-to-run/parallel-local-ssh1.sh
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
cat <<'EOF' | sed -e s/\$SERVER1/$SERVER1/\;s/\$SERVER2/$SERVER2/ | parallel -j10 -k -L1
|
||||||
|
echo '### Test bug #34241: --pipe should not spawn unneeded processes'
|
||||||
|
seq 5 | ssh csh@lo parallel --block 5 --pipe -j10 cat\\\;echo Block_end
|
||||||
|
EOF
|
|
@ -28,4 +28,8 @@ parallel -j0 -kX echo {}-{.} ::: a b c ::: d e f
|
||||||
echo '### Test of -r with --pipe - the first should give an empty line. The second should not.'
|
echo '### Test of -r with --pipe - the first should give an empty line. The second should not.'
|
||||||
echo | parallel -j2 -N1 --pipe cat | wc -l
|
echo | parallel -j2 -N1 --pipe cat | wc -l
|
||||||
echo | parallel -r -j2 -N1 --pipe cat | wc -l
|
echo | parallel -r -j2 -N1 --pipe cat | wc -l
|
||||||
|
|
||||||
|
echo '### Test --tty'
|
||||||
|
seq 0.1 0.1 0.5 | parallel -j1 --tty tty\;sleep
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -44,3 +44,9 @@ c-c f-f
|
||||||
### Test of -r with --pipe - the first should give an empty line. The second should not.
|
### Test of -r with --pipe - the first should give an empty line. The second should not.
|
||||||
1
|
1
|
||||||
0
|
0
|
||||||
|
### Test --tty
|
||||||
|
/dev/tty
|
||||||
|
/dev/tty
|
||||||
|
/dev/tty
|
||||||
|
/dev/tty
|
||||||
|
/dev/tty
|
||||||
|
|
Loading…
Reference in a new issue