Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 365 Bytes

pipe_output_to_less.md

File metadata and controls

18 lines (12 loc) · 365 Bytes

Pipe Output to less

$ curl -s example.com 2>&1 | less
  1. Use -s to silence the progress indicator
  2. Redirect STDERR to STDOUT with 2>&1

Alternatively the longform:

$ curl --silent example.com 2>&1 | less

References