httpless outputs also response headers by default

This commit is contained in:
Jakub Roztocil 2013-06-03 12:28:04 +02:00
parent 48719aa70e
commit 60f09776a5

View File

@ -840,7 +840,7 @@ by adding the following to your ``~/.bash_profile``:
function httpless {
# `httpless example.org'
http --pretty=all "$@" | less -R;
http --pretty=all --print=hb "$@" | less -R;
}