Project

General

Profile

Bug #11915

Updated by nobu (Nobuyoshi Nakada) over 8 years ago

```ruby 
 puts File.read "|/bin/ls" 
 [output of executing ls] 
 => nil 
 ``` 
 This is quite surprising behaviour. 

 It is one thing that some of the `.open` .open methods actually can execute stuff, but a method named 'read' should not behave like that.

Back