Practicing curl using a cmd script file that gets a random Dad Joke from https://icanhazdadjoke.co
curl -H "Accept: text/plain" https://icanhazdadjoke.com/
@echo off
echo.
echo Press Enter to exit...
pause > nul
curl -H "Accept: text/plain" https://icanhazdadjoke.com/
@echo off
echo.
echo Press Enter to exit...
pause > nul
0 Comments