mmstick/parallel

GNU parallel's --no-notice

Flat opened this issue · 3 comments

Flat commented

Some build scripts [1] use parallel with --no-notice [2], which disables the citation printed out to STDERR. parallel (rust) does not include any such citation; it does however exit on receiving a bad flag, this aborts the script even though parallel (rust) can continue fine while ignoring this flag.

I suggest that parallel (rust) silently ignore this flag to be compatible with GNU parallel's usage in scripts such as this.

  1. https://github.com/adapta-project/adapta-gtk-theme/blob/1048a2873b9a9b8fe816ffe50391689da3a0c012/gtk/Makefile.am#L892
  2. https://lists.gnu.org/archive/html/parallel/2013-11/msg00006.html

Alright then, I'll do this immediately.

Flat commented

That was fast, thanks!