mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/cgi/session/pstore.rb: separated sample code.
* lib/open3.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47122 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
31a1d0621c
commit
ffc068c9bb
5 changed files with 29 additions and 25 deletions
12
sample/open3.rb
Normal file
12
sample/open3.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
require 'open3'
|
||||
|
||||
a = Open3.popen3("nroff -man")
|
||||
Thread.start do
|
||||
while line = gets
|
||||
a[0].print line
|
||||
end
|
||||
a[0].close
|
||||
end
|
||||
while line = a[1].gets
|
||||
print ":", line
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue