# Get a file from a http address
wget
# Execute GET (or POST... see help)
curl [URL]
# GET web page with all the comm details
``` bash
# GET web page with all the communication details and hostname
curl -v --max-time 5 https://o7conseils.com
# GET web page with all the communication details, hostname, and a 5-second timeout
curl -v --header "Host: o7conseils.com" --max-time 5 https://o7conseils.com