Files
dotfiles/rua-scripts/common.sh
2025-02-25 15:27:54 +08:00

10 lines
192 B
Bash

#!/bin/env bash
oha_url() {
if [[ -z $1 ]]; then
echo "usage: oha_url <url>"
return
fi
oha -z 10sec -c 50 --latency-correction --disable-keepalive --insecure $1
}