Skip to content

Instantly share code, notes, and snippets.

View aliwesome's full-sized avatar
🎱
Focusing

Ali Sameni aliwesome

🎱
Focusing
View GitHub Profile
@aliwesome
aliwesome / ttfb.sh
Created February 22, 2022 19:28 — forked from sandeepraju/ttfb.sh
curl command to check the time to first byte
#!/bin/bash
# file: ttfb.sh
# curl command to check the time to first byte
# ** usage **
# 1. ./ttfb.sh "https://google.com"
# 2. seq 10 | xargs -Iz ./ttfb.sh "https://google.com"
curl -o /dev/null \
-H 'Cache-Control: no-cache' \
-s \