Skip to content

Instantly share code, notes, and snippets.

@aliboy08
Created September 2, 2024 02:21
Show Gist options
  • Save aliboy08/45a161199e2318da8de554e71bfd8475 to your computer and use it in GitHub Desktop.
Save aliboy08/45a161199e2318da8de554e71bfd8475 to your computer and use it in GitHub Desktop.
test load time on backend (logged in to wp) - supply login cookie
@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