[Ruby] Cut with ruby
ruby -a -ne 'puts $F[1], $F[2]'
-a will split the input into an array called $F. The above will print the second and the third item of the array (based on 0 index)
ruby -a -ne 'puts $F[1], $F[2]'