#retry #command-line #unstable #curl #site #stop #retrying

app retry-cmd

无需所有循环即可在命令行上重试命令!

6个版本 (3个重大变更)

0.4.1 2019年2月16日
0.4.0 2019年2月16日
0.3.0 2019年2月16日
0.2.1 2019年2月16日
0.1.0 2019年2月16日

#7#retrying

MIT 许可证

7KB
130

retry

无需所有循环即可在命令行上重试命令!

# Stop retrying after 10 tries
retry --max 10 -- curl -I https://unstable.site

# Stop retrying after 10 tries and wait 5 seconds between the each try
retry --max 10 --interval 5 -- curl -I https://unstable.site

# Stop retrying if exit code is 1
retry --exitcode 1 -- curl -I https://unstable.site

# Suppress stdout and stderr from the command
retry --quiet -- curl -I https://unstable.site

安装

cargo install retry-cmd

依赖项

~750KB