parallel 20220722+ds-1 source package in Ubuntu

Changelog

parallel (20220722+ds-1) unstable; urgency=medium

  * New upstream version
  * Add citation
  * Standards-Version: 4.6.1 (routine-update)
  * Update citation patch.  Noted that upstream added
     You accept to be put in a public hall of shame by removing these lines.
    comments but I do not think that those statements invalidate the permission
    to change the code that is granted by GPL.
  * Suggests: ash

 -- Andreas Tille <email address hidden>  Wed, 27 Jul 2022 11:26:27 +0200

Upload details

Uploaded by:
Debian Med
Uploaded to:
Sid
Original maintainer:
Debian Med
Architectures:
all
Section:
utils
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
parallel_20220722+ds-1.dsc 2.1 KiB 340b0920a0c8c109ef448bb3082fd081b6937ade7e43ec618e04bfc4841879c5
parallel_20220722+ds.orig.tar.xz 357.8 KiB d5dabb18cf34ec529b89757164ccd6b56f3980dd4f3a1b8a9dfaccc91042c17c
parallel_20220722+ds-1.debian.tar.xz 20.5 KiB 6caa951369b70ed3a719b02cfc40779819d551a8bc67bc38b31109c40a22bee8

Available diffs

No changes file available.

Binary packages built by this source

parallel: build and execute command lines from standard input in parallel

 GNU Parallel is a shell tool for executing jobs in parallel using one
 or more machines. A job is typically a single command or a small
 script that has to be run for each of the lines in the input. The
 typical input is a list of files, a list of hosts, a list of users, or
 a list of tables.
 .
 If you use xargs today you will find GNU Parallel very easy to use. If
 you write loops in shell, you will find GNU Parallel may be able to
 replace most of the loops and make them run faster by running jobs in
 parallel. If you use ppss or pexec you will find GNU Parallel will
 often make the command easier to read.
 .
 GNU Parallel also makes sure output from the commands is the same
 output as you would get had you run the commands sequentially. This
 makes it possible to use output from GNU Parallel as input for other
 programs.