Curl
Retrieve Website’s HTML
TODO: Add more explanation: sed is a command for text manipulation
https://stackoverflow.com/questions/3252851/how-to-display-request-headers-with-command-line-curl
curl -vs http://programming.mytools.dev 2>&1 | sed '/^* /d; /bytes data]$/d; s/> //; s/< //'
Save HTML to File
TODO: Add more explanation
curl “http://programming.mytools.dev” -o “testFile22.html”
Journal
2020.08.12 Created file