diff options
| author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-04 14:35:19 +0000 |
|---|---|---|
| committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-04 14:35:19 +0000 |
| commit | f5cb914f38ab7515e1627743a22a6b90a3e2de6b (patch) | |
| tree | 54222275fc312480bd0e07d75727354fb0063a20 /lib | |
| parent | 107075284bbc9c8119eb7d6897ea5aa9d859c8c8 (diff) | |
| download | ruby-f5cb914f38ab7515e1627743a22a6b90a3e2de6b.tar.gz ruby-f5cb914f38ab7515e1627743a22a6b90a3e2de6b.tar.xz ruby-f5cb914f38ab7515e1627743a22a6b90a3e2de6b.zip | |
rdoc update.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20518 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/open3.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/open3.rb b/lib/open3.rb index 7bf330c82..e70aaca6e 100644 --- a/lib/open3.rb +++ b/lib/open3.rb @@ -195,6 +195,13 @@ module Open3 # # If opts[:stdin_data] is specified, it is sent to the command's standard input. # + # Example: + # + # o, e, s = Open3.poutput3("echo a; sort >&2", :stdin_data=>"foo\nbar\nbaz\n") + # p o #=> "a\n" + # p e #=> "bar\nbaz\nfoo\n" + # p s #=> #<Process::Status: pid 32682 exit 0> + # def poutput3(*cmd, &block) if Hash === cmd.last opts = cmd.pop.dup |
