本文简要介绍ruby语言中 PTY.open
的用法。
用法
open → [master_io, slave_file]
open {|(master_io, slave_file)| ... } → block value
分配一个 pty (pseudo-terminal)。
在块形式中,产生一个包含两个元素的数组 (master_io, slave_file
),块的值从 open
返回。
PTY.open {|master, slave|
p master #=> #<IO:masterpty:/dev/pts/1>
p slave #=> #<File:/dev/pts/1>
p slave.path #=> "/dev/pts/1"
}
在非块形式中,返回一个二元素数组 [master_io, slave_file]
。
master, slave = PTY.open
# do something with master for IO, or the slave file
两种形式的参数是:
IO#raw!
可用于禁用换行符转换:
require 'io/console'
PTY.open {|m, s|
s.raw!
# ...
}
相关用法
- Ruby PTY模块用法及代码示例
- 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.open。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。