本文简要介绍ruby语言中 PTY模块
的用法。
创建和管理伪终端 (PTY)。另见en.wikipedia.org/wiki/Pseudo_terminal
PTY
允许您使用 ::open
或 ::spawn
分配具有特定命令的新终端。
示例
在此示例中,我们将更改 factor
命令中的缓冲类型,假设 factor 使用 stdio 进行 stdout 缓冲。
如果使用 IO.pipe
而不是 PTY.open
,则此代码将死锁,因为因子的标准输出已完全缓冲。
# start by requiring the standard library PTY
require 'pty'
master, slave = PTY.open
read, write = IO.pipe
pid = spawn("factor", :in=>read, :out=>slave)
read.close # we dont need the read
slave.close # or the slave
# pipe "42" to the factor command
write.puts "42"
# output the response from factor
p master.gets #=> "42: 2 3 7\n"
# pipe "144" to factor and print out the response
write.puts "144"
p master.gets #=> "144: 2 2 2 2 3 3\n"
write.close # close the pipe
# The result of read operation when pty slave is closed is platform
# dependent.
ret = begin
master.gets # FreeBSD returns nil.
rescue Errno::EIO # GNU/Linux raises EIO.
nil
end
p ret #=> nil
相关用法
- Ruby PTY.open用法及代码示例
- Ruby PrettyPrint.current_group用法及代码示例
- Ruby Pathname.<=>用法及代码示例
- Ruby Pathname.children用法及代码示例
- Ruby Process.groups用法及代码示例
- Ruby Process.wait2用法及代码示例
- Ruby Process.getpgrp用法及代码示例
- Ruby Proc.eql?用法及代码示例
- Ruby PrettyPrint.genspace用法及代码示例
- Ruby PKey.sign_raw用法及代码示例
- Ruby Profiler模块用法及代码示例
- Ruby Process.setproctitle用法及代码示例
- Ruby PPMethods.comma_breakable用法及代码示例
- Ruby Process.setrlimit用法及代码示例
- Ruby Proc.prc ==用法及代码示例
- Ruby Profiler.raw_data用法及代码示例
- Ruby Process.uid用法及代码示例
- Ruby Pathname.descend用法及代码示例
- Ruby Process.pid用法及代码示例
- Ruby Proc.ruby2_keywords用法及代码示例
- Ruby Pathname.getwd用法及代码示例
- Ruby PKey.generate_parameters用法及代码示例
- Ruby Proc.new用法及代码示例
- Ruby Process.detach用法及代码示例
- Ruby Pathname.ascend用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 PTY模块。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。