kget is a simple HTTP request programme. We can run kget to get the web page. eg. $kget www.google.com, kget will return the html page back but in the text form.
$sudo apt update
$sudo apt install libboost-all-dev
$g++ kget.cpp -o kget -lboost_regex
kget <url>
For Example.
$kget
or
$kget www.google.com
sequenceDiagram
kget ->> Server: HTTP Request: GET / HTTP/1.0\n\n
Note right of Server: If the requested pattern is ok it will return something back to kget.
Server-->>kget: <HTTP Header> + HTML