|
|
|
|
|
by ryanmjacobs
530 days ago
|
|
FYI, one of my favorite Ruby idioms is to capture command output with `open(...){_1.read}` pp open("|ls -lh /usr/bin/ls"){_1.read}
"-rwxr-xr-x 1 root root 135K Aug 30 04:57 /usr/bin/ls\n"
or to quickly print tabular data open("|column -t -s \\t", "w"){_1 << tsv_data}
|
|