
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this page
Previous:
New IssueTrackerProduct release
Next:
Review: Django 1.1 Testing and Debugging
Kittenwar a clever way of voting
Back from China
Javascript tip: nifty use of the console.log function in Firebug
Running simple SQL commands on the command line
List of casts in PostgreSQL
Connecting with psycopg2 without a username and password
New IssueTrackerProduct release
Next:
Review: Django 1.1 Testing and Debugging
Related blogs
Redirect stderr into becoming dots in BashKittenwar a clever way of voting
Back from China
Javascript tip: nifty use of the console.log function in Firebug
Running simple SQL commands on the command line
List of casts in PostgreSQL
Connecting with psycopg2 without a username and password
Related by category
Making output stay on stdout
17th of May 2010
This is fairly obvious stuff I guess but it has troubled me for a long time. Some programs on Linux don't spit out their results to stdout. Instead they start a little program similar to less. So what is a console nerd to do?
Pipe it cat! I don't know why I've never thought of this before:
$ psql -l | cat

