#shell #parallel #command #repeat #running #thread

app concur

一个并行重复函数,用于运行shell命令

5 个版本

使用旧的Rust 2015

0.1.4 2017年5月4日
0.1.3 2017年3月2日
0.1.2 2016年10月31日
0.1.1 2016年10月31日
0.1.0 2016年10月31日

#35 in #repeat

MIT 协议

4KB
70

concur

一个简单的工具,帮助在终端中并行重复命令。它受到了内置的shell命令 repeat 的启发,但增加了对多线程的支持。

构建

如果您已安装Rust,只需运行

cargo build --release

您也可以使用cargo安装它,将其作为二进制文件使用

cargo install concur

用法

您可以根据需要带或不带线程运行它

# Run a command synchronously.
concur 10 curl https://rust-lang.net.cn

# Run it with threads.
concur 10 curl https://rust-lang.net.cn -j 2

# Run a command with it's own arguments.
concur 5 ls -- -a

当运行具有自己参数的命令时,在列出参数前指定两个破折号允许它们被您的程序选项忽略。

许可证

MIT

依赖

~4MB
~80K SLoC