gpt4 book ai didi

gnu-parallel - GNU并行: How to run Rscript inside a shell script

转载 作者:行者123 更新时间:2023-12-03 01:19:06 41 4
gpt4 key购买 nike

我在 ubuntu 服务器上使用最新的并行,在 tmux

在命令行中输入时效果很好:

parallel -j 20  --progress --halt 2   ' Rscript Run.r   {}' ::: {1..80}

但是我想在 shell 脚本中一个接一个地运行许多这样的命令,但由于没有将参数传递给 Rscript,它总是失败。

有什么办法可以实现这个功能吗?

最佳答案

这对我在tmux中有用:

#!/bin/bash

parallel -j 20 --progress --halt 2 'sleep {}' ::: {1..80}
parallel -j 20 --progress --halt 2 'sleep {}' ::: {1..80}
parallel -j 20 --progress --halt 2 'sleep {}' ::: {1..80}
parallel -j 20 --progress --halt 2 'sleep {}' ::: {1..80}

请记住,{1..80} 是一个 bash 结构:它在/bin/sh 中不起作用。

关于gnu-parallel - GNU并行: How to run Rscript inside a shell script,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28380503/

41 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com