ライブラリ
- ビルトイン (276)
- csv (24)
-
irb
/ extend-command (24) -
net
/ ftp (108) -
net
/ telnet (4) - open3 (216)
- openssl (36)
- rake (12)
-
rubygems
/ command (24)
クラス
-
ARGF
. class (24) - CSV (24)
-
Gem
:: Command (24) - IO (120)
-
Net
:: FTP (108) -
Net
:: Telnet (4) -
OpenSSL
:: Engine (24) - String (84)
モジュール
- FileUtils (12)
-
IRB
:: ContextExtender (12) -
IRB
:: ExtendCommandBundle (12) - Kernel (24)
- Open3 (216)
-
OpenSSL
:: SSL :: SocketForwarder (12) - Process (12)
キーワード
- ARGF (12)
- Rubyの起動 (12)
- Ruby用語集 (12)
- Win32ネイティブ版Rubyの互換性問題 (12)
- []= (84)
-
add
_ specific _ extra _ args (12) - capture2 (12)
- capture2e (12)
- capture3 (12)
-
cgi
/ session (12) - cmds (12)
-
ctrl
_ cmd (12) -
def
_ extend _ command (24) - fcntl (36)
-
inplace
_ mode (12) -
inplace
_ mode= (12) - ioctl (24)
-
irb
/ cmd / chws (12) -
irb
/ cmd / help (12) -
irb
/ cmd / load (12) -
irb
/ cmd / nop (12) -
irb
/ cmd / pushws (12) -
irb
/ cmd / subirb (12) -
irb
/ ext / change-ws (12) -
irb
/ ext / loader (12) -
irb
/ ext / multi-irb (12) -
irb
/ ext / workspaces (12) - pipeline (12)
-
pipeline
_ r (24) -
pipeline
_ rw (24) -
pipeline
_ start (24) -
pipeline
_ w (24) - popen (96)
- popen2 (24)
- popen2e (24)
- popen3 (24)
-
rb
_ eval _ cmd (12) -
rb
_ thread _ trap _ eval (12) -
rb
_ trace _ eval (12) -
rb
_ trap _ eval (12) - retrbinary (24)
- retrlines (12)
- sendcmd (12)
- sh (12)
- spawn (12)
-
specific
_ extra _ args (12) - storbinary (24)
- storlines (24)
- test (24)
- voidcmd (12)
- win32ole (12)
検索結果
先頭5件
- IO
. popen([env = {} , [cmdname , arg0] , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object - IO
. popen([env = {} , cmdname , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object - IO
. popen(env = {} , [[cmdname , arg0] , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object - IO
. popen(env = {} , [cmdname , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object - Net
:: Telnet # cmd(opts) -> String
-
IO
. popen([env = {} , [cmdname , arg0] , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object (23100.0) -
サブプロセスを実行し、そのプロセスの標準入出力 との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
...出力
との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
p io = IO.popen("cat", "r+") # => #<IO:fd 4>
io.puts "foo"
io.close_write
p io.gets # => "foo\n"
サブプロセスを指定する方法は2......、
配列の場合は、シェルを経由せずに子プロセスを実行します。
シェルを経由しない場合(上のシグネチャで cmdname を含む場合)には *args
がサブプロセスの引数として使われます。この場合には *args はシェルでの
ワイルド......生成した IO オブジェクトを引数にブ
ロックを実行し、ブロックの実行結果を返します。ブロックの実行後、生成したパイ
プは自動的にクローズされます。
p IO.popen("cat", "r+") {|io|
io.puts "foo"
io.close_write
io.gets
}
#... -
IO
. popen([env = {} , cmdname , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object (23100.0) -
サブプロセスを実行し、そのプロセスの標準入出力 との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
...出力
との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
p io = IO.popen("cat", "r+") # => #<IO:fd 4>
io.puts "foo"
io.close_write
p io.gets # => "foo\n"
サブプロセスを指定する方法は2......、
配列の場合は、シェルを経由せずに子プロセスを実行します。
シェルを経由しない場合(上のシグネチャで cmdname を含む場合)には *args
がサブプロセスの引数として使われます。この場合には *args はシェルでの
ワイルド......生成した IO オブジェクトを引数にブ
ロックを実行し、ブロックの実行結果を返します。ブロックの実行後、生成したパイ
プは自動的にクローズされます。
p IO.popen("cat", "r+") {|io|
io.puts "foo"
io.close_write
io.gets
}
#... -
IO
. popen(env = {} , [[cmdname , arg0] , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object (23100.0) -
サブプロセスを実行し、そのプロセスの標準入出力 との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
...出力
との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
p io = IO.popen("cat", "r+") # => #<IO:fd 4>
io.puts "foo"
io.close_write
p io.gets # => "foo\n"
サブプロセスを指定する方法は2......、
配列の場合は、シェルを経由せずに子プロセスを実行します。
シェルを経由しない場合(上のシグネチャで cmdname を含む場合)には *args
がサブプロセスの引数として使われます。この場合には *args はシェルでの
ワイルド......生成した IO オブジェクトを引数にブ
ロックを実行し、ブロックの実行結果を返します。ブロックの実行後、生成したパイ
プは自動的にクローズされます。
p IO.popen("cat", "r+") {|io|
io.puts "foo"
io.close_write
io.gets
}
#... -
IO
. popen(env = {} , [cmdname , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object (23100.0) -
サブプロセスを実行し、そのプロセスの標準入出力 との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
...出力
との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
p io = IO.popen("cat", "r+") # => #<IO:fd 4>
io.puts "foo"
io.close_write
p io.gets # => "foo\n"
サブプロセスを指定する方法は2......、
配列の場合は、シェルを経由せずに子プロセスを実行します。
シェルを経由しない場合(上のシグネチャで cmdname を含む場合)には *args
がサブプロセスの引数として使われます。この場合には *args はシェルでの
ワイルド......生成した IO オブジェクトを引数にブ
ロックを実行し、ブロックの実行結果を返します。ブロックの実行後、生成したパイ
プは自動的にクローズされます。
p IO.popen("cat", "r+") {|io|
io.puts "foo"
io.close_write
io.gets
}
#... -
Net
:: Telnet # cmd(opts) -> String (18202.0) -
コマンドをホストに送ります。
..."String" 送る文字列です。必ず指定する必要があります。
"Match" ホストからのデータをどこまで読みこむかを指定する正規表現を
指定します。デフォルトは Net::Telnet.new で "Prompt" で指定した
正規表現となります。
"Timeout"......字列には改行が付加されてホストに送られます。
@param opts ホストに送るコマンドを文字列で指定します。もしくは送る文字列とオプションをハッシュで指定します。
@raise TimeoutError タイムアウトしたときに発生します。... -
Net
:: Telnet # cmd(opts) {|mesg| . . . } -> String (18202.0) -
コマンドをホストに送ります。
..."String" 送る文字列です。必ず指定する必要があります。
"Match" ホストからのデータをどこまで読みこむかを指定する正規表現を
指定します。デフォルトは Net::Telnet.new で "Prompt" で指定した
正規表現となります。
"Timeout"......字列には改行が付加されてホストに送られます。
@param opts ホストに送るコマンドを文字列で指定します。もしくは送る文字列とオプションをハッシュで指定します。
@raise TimeoutError タイムアウトしたときに発生します。... -
irb
/ cmd / subirb (18000.0) -
irb 中の irb、irb_jobs、irb_fg、irb_kill コマンドのための拡張を定義した サブライブラリです。
...irb 中の irb、irb_jobs、irb_fg、irb_kill コマンドのための拡張を定義した
サブライブラリです。
このライブラリで定義されているメソッドはユーザが直接使用するものではあ
りません。... -
Net
:: FTP # voidcmd(cmd) -> nil (12323.0) -
cmd で指定されたコマンドをサーバーに送ります。
...cmd で指定されたコマンドをサーバーに送ります。
@param cmd コマンドを文字列で指定します。
@raise Net::FTPReplyError 応答コードが 2yz 以外の場合に発生します。... -
irb
/ ext / multi-irb (12006.0) -
irb 中で複数の独立した irb を扱えるようにするためのサブライブラリです。
...irb 中で複数の独立した irb を扱えるようにするためのサブライブラリです。
このライブラリで定義されているメソッドはユーザが直接使用するものではあ
りません。irb/cmd/subirb から呼び出されます。... -
irb
/ cmd / chws (12000.0) -
irb 中の irb_current_working_workspace、irb_change_workspace コマンドの ための拡張を定義したサブライブラリです。
...irb 中の irb_current_working_workspace、irb_change_workspace コマンドの
ための拡張を定義したサブライブラリです。
このライブラリで定義されているメソッドはユーザが直接使用するものではあ
りません。... -
irb
/ cmd / help (12000.0) -
irb 中の help コマンドのための拡張を定義したサブライブラリです。
...irb 中の help コマンドのための拡張を定義したサブライブラリです。
このライブラリで定義されているメソッドはユーザが直接使用するものではあ
りません。...
