Created
September 2, 2024 02:21
-
-
Save aliboy08/45a161199e2318da8de554e71bfd8475 to your computer and use it in GitHub Desktop.
test load time on backend (logged in to wp) - supply login cookie
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/wp-admin/ | |
set runs=3 | |
for /L %%i in (1,1,%runs%) do ( | |
curl -o NUL -s -w "%%{time_total}\n" -H "Pragma: no-cache" -H "cookie:{INSERT_COOKIE_HERE}" "!url!" | |
) | |
endlocal |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment