Linux command
mult 命令
文本
Copy it and replace filenames, paths, or keywords as needed.
命令示例
Run a command 5 times
mult -n 5 "[command]"
Run with delay between executions
mult -n 5 -d 1s "[command]"
Stop on first failure
mult -n 10 --fail-fast "[command]"
说明
mult is a TUI tool that executes a shell command multiple times and displays each run's output for comparison. It is useful for identifying inconsistent server behavior, examining unreliable test outcomes, and conducting quick performance assessments. The TUI provides side-by-side output comparison of each run.
参数
- -n _COUNT_
- Number of times to run the command.
- -d, --delay _DURATION_
- Delay between executions.
- --fail-fast
- Stop execution on the first failure.
FAQ
What is the mult command used for?
mult is a TUI tool that executes a shell command multiple times and displays each run's output for comparison. It is useful for identifying inconsistent server behavior, examining unreliable test outcomes, and conducting quick performance assessments. The TUI provides side-by-side output comparison of each run.
How do I run a basic mult example?
Run `mult -n 5 "[command]"` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does -n _COUNT_ do in mult?
Number of times to run the command.