Mercurial
comparison gui_ze/time_to_first_byte.sh @ 23:2d0d0b6c8906
[GuiZe] Adding TTFB calculating script.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Tue, 07 Oct 2025 08:55:40 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 22:947b81010aba | 23:2d0d0b6c8906 |
|---|---|
| 1 #!/bin/bash | |
| 2 set -euo pipefail | |
| 3 | |
| 4 URL="${1:-http://seobeo.babocoder.com/}" | |
| 5 | |
| 6 curl -o /dev/null -s -w 'namelookup: %{time_namelookup}s\nconnect: %{time_connect}s\ntls: %{time_appconnect}s\nrequest: %{time_pretransfer}s\nTTFB: %{time_starttransfer}s\ntotal: %{time_total}s\n' "$URL" |