mirror of
https://github.com/wahyd4/things.git
synced 2026-08-08 21:02:02 +10:00
14 lines
361 B
Bash
Executable File
14 lines
361 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
curl_time() {
|
|
curl -so /dev/null -w "\
|
|
namelookup: %{time_namelookup}s\n\
|
|
connect: %{time_connect}s\n\
|
|
appconnect: %{time_appconnect}s\n\
|
|
pretransfer: %{time_pretransfer}s\n\
|
|
redirect: %{time_redirect}s\n\
|
|
starttransfer: %{time_starttransfer}s\n\
|
|
-------------------------\n\
|
|
total: %{time_total}s\n" "$@"
|
|
}
|