Search Results

1
vote

[ruby] How to convert STDIN contents to an array?

What your are after is using $stdin instead of $stdin.to_s ruby -e 'p $stdin.readlines.size' < INPUT 3 ruby -e 'p $stdin.to_s' "#<IO:0x7fc7cc578af0>" …