I have forgotten how to capture the output from a shell command. The background is that the `wc` program on Linux (and, I assume, OS X) is an incredibly fast way to count the number of lines in a data file, as in
julia> run(`wc -l ratings.dat`) 1000209 ratings.dat I want to capture that string and parse the number.
