To be similar with `curl` and `httpie` example, i.e. no intermediate file but stdout, replace ```shell wget -i https://covid19.trackercli.com && cat index.html ``` with the following (asking to use stdout as output file) ```shell wget -i -O - https://covid19.trackercli.com ``` Best regards.