which cygwin package to get `parallel` command?

后端 未结 2 1042
自闭症患者
自闭症患者 2021-01-17 22:23

Which cygwin package do I install to get the parallel command?

http://www.commandlinefu.com/commands/view/4738/grep-or-anything-else-many-files-with-mul

2条回答
  •  时光取名叫无心
    2021-01-17 23:01

    This script works better 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
    

提交回复
热议问题