til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

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