Version update. Small --tty test.

This commit is contained in:
Ole Tange 2013-01-09 23:06:01 +01:00
parent e3e1345aac
commit d847c932f5
5 changed files with 30 additions and 5 deletions

View file

@ -171,15 +171,24 @@ cc:Sandro Cazzaniga <kharec@mandriva.org>,
Ryoichiro Suzuki <ryoichiro.suzuki@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/
New in this release:
* Mahout: Parallelising the creation of DecisionTrees
http://www.markhneedham.com/blog/2012/12/27/mahout-parallelising-the-creation-of-decisiontrees/
* Official OpenBSD port:
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.

View file

@ -617,7 +617,7 @@ sub get_options_from_array {
sub parse_options {
# Returns: N/A
# Defaults:
$Global::version = 20121222;
$Global::version = 20130109;
$Global::progname = 'parallel';
$Global::infinity = 2**31;
$Global::debug = 0;

View 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

View file

@ -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 | parallel -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

View file

@ -44,3 +44,9 @@ c-c f-f
### Test of -r with --pipe - the first should give an empty line. The second should not.
1
0
### Test --tty
/dev/tty
/dev/tty
/dev/tty
/dev/tty
/dev/tty