✨ Overview

Run a command multiple times and glance at the outputs.

mult command --you=want to run

Usage

💾 Installation

go:

go install github.com/dhth/mult@latest

⚡️ Usage

Run concurrently

mult \
    curl -s -i https://httpbin.org/delay/1

Usage

Specify number of runs

mult \
    -n=10 \
    curl -s -i https://httpbin.org/delay/1

Ask for number of runs

mult \
    -i \
    curl -s -i https://httpbin.org/delay/1

Run sequentially

mult \
    -s \
    curl -s -i https://httpbin.org/delay/1

Usage

Add delay (in milliseconds) between runs

mult \
    -s \
    -delay-ms=500 \
    curl -s -i https://httpbin.org/delay/1

Stop at first failure

mult \
    -s \
    -ff \
    curl -s -i https://httpbin.org/delay/1

Usage

Note: -delay-ms, -ff only apply in sequential run mode.