- Update to 0.53

Changes:	http://joeyh.name/code/moreutils/news/version_0.53/
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2014-11-24 18:28:47 +00:00
parent b33fdce6d2
commit 4f414b49bb
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=373287
3 changed files with 9 additions and 6 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME= moreutils
PORTVERSION= 0.52
PORTVERSION= 0.53
CATEGORIES= sysutils
MASTER_SITES= DEBIAN_POOL
DISTNAME= ${PORTNAME}_${PORTVERSION}

View File

@ -1,2 +1,2 @@
SHA256 (moreutils_0.52.tar.gz) = c4bcf2f5bac09312ed5aa48d2cecd77a1c9609017b7a2acb2ac9fdd197480ffb
SIZE (moreutils_0.52.tar.gz) = 47511
SHA256 (moreutils_0.53.tar.gz) = 4f1842467759b6747f28a624c317a315f0b54a44440d2c8e2eec4d10144696fc
SIZE (moreutils_0.53.tar.gz) = 47613

View File

@ -63,15 +63,18 @@ Number of arguments to pass to a command at a time\&. Default is 1\&. Incompatib
.RE
.SH "EXAMPLE"
.PP
.HP \w'\fBparallel\ sh\ \-c\ "echo\ hi;\ sleep\ 2;\ echo\ bye"\ \-\-\ 1\ 2\ 3\fR\ 'u \fBparallel sh \-c "echo hi; sleep 2; echo bye" \-\- 1 2 3\fR
\fBparallel sh \-c "echo hi; sleep 2; echo bye" \-\- 1 2 3\fR
.PP
This runs three subshells that each print a message, delay, and print another message\&. If your system has multiple CPUs, parallel will run some of the jobs in parallel, which should be clear from the order the messages are output\&.
.PP
.HP \w'\fBparallel\ \-j\ 3\ ufraw\ \-o\ processed\ \-\-\ *\&.NEF\fR\ 'u \fBparallel \-j 3 ufraw \-o processed \-\- *\&.NEF\fR
\fBparallel \-j 3 ufraw \-o processed \-\- *\&.NEF\fR
.PP
This runs three ufraw processes at the same time until all of the NEF files have been processed\&.
.PP
.HP \w'\fBparallel\ \-j\ 3\ \-\-\ ls\ df\ "echo\ hi"\fR\ 'u \fBparallel \-j 3 \-\- ls df "echo hi"\fR
\fBparallel \-j 3 \-\- ls df "echo hi"\fR
.PP
This runs three independent commands in parallel\&.
.SH "EXIT STATUS"