Created
August 30, 2024 03:24
-
-
Save aliboy08/16d1002dd4a6274e714b27b8bd318a73 to your computer and use it in GitHub Desktop.
measure load time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
set url=https://next-level-racing-new.local/sample-home/ | |
set runs=10 | |
for /L %%i in (1,1,%runs%) do ( | |
curl -o NUL -s -w "%%{time_total}\n" -H "Pragma: no-cache" "!url!" | |
) | |
endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment