The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
So I'm writing a python script, and part of it echos a command to be executed, pipes that into sort, which in turn I need piped into a file. Do I just do <command> | sort n | <filename>?
Posts
See how many books I've read so far in 2010
or:
... sort n >> filename
if you want to append to the end of the file.
Edit: Oh man, well beaten by the Linux thread.
See how many books I've read so far in 2010