From b15780ef670a4b0a7380e824259335212259f76a Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 16 Sep 2003 17:37:34 +0000 Subject: * regex.c (re_compile_pattern): should not translate character class range edge. [ruby-list:38393] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4557 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/open3.rb | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/open3.rb b/lib/open3.rb index a6e6c5d62..569c8968b 100644 --- a/lib/open3.rb +++ b/lib/open3.rb @@ -1,11 +1,14 @@ +# open3.rb: Spawn a program like popen, but with stderr, too. You might also +# want to use this if you want to bypass the shell. (By passing multiple args, +# with IO#popen does not allow) +# # Usage: # require "open3" # -# in, out, err = Open3.popen3('nroff -man') +# stdin, stdout, stderr = Open3.popen3('nroff -man') # or # include Open3 -# in, out, err = popen3('nroff -man') -# +# stdin, stdout, stderr = popen3('nroff -man') module Open3 #[stdin, stdout, stderr] = popen3(command); -- cgit