Which cygwin package will receive the `parallel` command?

2 answers

Install gcc, make, autotools, etc. in cygwin, download the software and compile it yourself (initially under the windows, so you get Windows, the native binary), since it does not seem to be offered by cygwin.

README for software has a section on windows:

 = Minimal installation = 

If you just need a parallel and you don’t have β€œmake” (the system may be outdated or Microsoft Windows):

 wget http://git.savannah.gnu.org/cgit/parallel.git/plain/src/parallel chmod 755 parallel cp parallel sem mv parallel sem dir-in-your-$PATH/bin/ 
+6
source

This script works best to install the latest version of GNU parallel from the source.

 wd=$(mktemp -d) wget -nc -P $wd ftp://ftp.gnu.org/gnu/parallel/parallel-latest.tar.bz2 cd $wd tar -xf parallel-latest.tar.bz2 cd parallel-* ./configure && make && make install 
+4
source

All Articles