Tagged Questions
0
votes
2answers
252 views
pipe a program into less
I'm taking the dive into setting up and learning git and at the same time learning bash. I'm trying to do something simple as view the help section of
$ git config
unfortunately, when I type that ...
8
votes
3answers
7k views
cURL: how to suppress strange output when redirecting?
I'm trying to print just the verbose sections of a cURL request (which are sent to stderr) from the bash shell.
But when I redirect stdout like this:
curl -v http://somehost/somepage > /dev/null
...