mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 16:51:36 +00:00
10 lines
192 B
Bash
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
|
|
}
|