別のキーワード
ライブラリ
- ビルトイン (180)
-
drb
/ extservm (24) - fileutils (12)
-
irb
/ cmd / nop (24) -
irb
/ extend-command (72) -
rubygems
/ command (108) -
rubygems
/ command _ manager (12) -
rubygems
/ ext / builder (12) - shell (30)
-
shell
/ command-processor (84) -
shell
/ system-command (6)
クラス
-
DRb
:: ExtServManager (24) -
Gem
:: Command (108) -
Gem
:: CommandManager (12) -
Gem
:: Ext :: Builder (12) - IO (168)
-
IRB
:: ExtendCommand :: Nop (24) - Shell (30)
-
Shell
:: CommandProcessor (84) -
Shell
:: SystemCommand (6)
モジュール
- FileUtils (12)
-
IRB
:: ContextExtender (24) -
IRB
:: ExtendCommandBundle (48) - Process (12)
キーワード
-
add
_ common _ option (12) -
add
_ delegate _ command _ to _ shell (6) -
add
_ specific _ extra _ args (12) -
alias
_ command (18) -
alias
_ map (6) -
build
_ args (12) -
build
_ args= (12) - command= (12)
- commands (12)
-
def
_ builtin _ commands (6) -
def
_ extend _ command (24) -
def
_ system _ command (12) - exec (12)
- execute (12)
-
extend
_ object (12) -
extra
_ args (12) -
extra
_ args= (12) - initialize (6)
-
install
_ builtin _ commands (6) -
install
_ extend _ commands (24) -
install
_ system _ commands (12) - instance (12)
-
irb
_ original _ method _ name (12) -
method
_ added (6) - new (24)
- popen (168)
- run (12)
-
run
_ config (6) -
specific
_ extra _ args (12) -
specific
_ extra _ args _ hash (12) -
unalias
_ command (12) -
undef
_ system _ command (12)
検索結果
先頭5件
- IO
. popen(env = {} , [cmdname , *args , execopt={}] , mode = "r" , opt={}) -> IO - IO
. popen(env = {} , [cmdname , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object - IO
. popen("-" , mode = "r" , opt={}) -> IO - IO
. popen("-" , mode = "r" , opt={}) {|io| . . . } -> object - IO
. popen(env , "-" , mode = "r" , opt={}) -> IO
-
IO
. popen(env = {} , [cmdname , *args , execopt={}] , mode = "r" , opt={}) -> IO (9.0) -
サブプロセスを実行し、そのプロセスの標準入出力 との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
...o|
ls_result_with_error = ls_io.read
}
@param env 環境変数を { 変数名 => 内容 } という形式の Hash で渡します。
@param command コマンド名を文字列で指定します。シェルを経由して実行されます。
@param cmdname コマンド名を文字列で指定... -
IO
. popen(env = {} , [cmdname , *args , execopt={}] , mode = "r" , opt={}) {|f| . . . } -> object (9.0) -
サブプロセスを実行し、そのプロセスの標準入出力 との間にパイプラインを確立します。生成したパイプを IO オブジェクトとして返します。
...o|
ls_result_with_error = ls_io.read
}
@param env 環境変数を { 変数名 => 内容 } という形式の Hash で渡します。
@param command コマンド名を文字列で指定します。シェルを経由して実行されます。
@param cmdname コマンド名を文字列で指定... -
IO
. popen("-" , mode = "r" , opt={}) -> IO (4.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
... -
IO
. popen("-" , mode = "r" , opt={}) {|io| . . . } -> object (4.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
... -
IO
. popen(env , "-" , mode = "r" , opt={}) -> IO (4.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
... -
IO
. popen(env , "-" , mode = "r" , opt={}) {|io| . . . } -> object (4.0) -
第一引数に文字列 "-" が指定された時、fork(2) を 行い子プロセスの標準入出力との間にパイプラインを確立します。 親プロセスでは IO オブジェクトを返し、子プロセスでは nil を返します。
第一引数に文字列 "-" が指定された時、fork(2) を
行い子プロセスの標準入出力との間にパイプラインを確立します。
親プロセスでは IO オブジェクトを返し、子プロセスでは
nil を返します。
io = IO.popen("-", "r+")
if io # parent
io.puts "foo"
p io.gets # => "child output: foo\n"
io.close
else # child
s = gets
print "child output: " + s
...