Pipe Output to less
$ curl -s example.com 2>&1 | less
- Use
-s
to silence the progress indicator - Redirect STDERR to STDOUT with
2>&1
Alternatively the longform:
$ curl --silent example.com 2>&1 | less
$ curl -s example.com 2>&1 | less
-s
to silence the progress indicator2>&1
Alternatively the longform:
$ curl --silent example.com 2>&1 | less