るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
3件ヒット [1-3件を表示] (0.031秒)
トップページ > モジュール:Kernel[x] > バージョン:2.3.0[x] > クエリ:kernel[x] > クエリ:open[x] > 種類:インスタンスメソッド[x]

別のキーワード

  1. kernel exec
  2. kernel spawn
  3. kernel system
  4. kernel fail

ライブラリ

キーワード

検索結果

Kernel#xpopen(command, *mode) -> IO (45343.0)

command を表示してから IO.popen の実行します。

...command を表示してから IO.popen の実行します。

@param command コマンド名を指定します。

@param mode オープンする IO ポートのモードを指定します。mode の詳細は Kernel.#open 参照して下さい。

@see IO.popen...

Kernel#xpopen(command, *mode) { ... } -> object (45343.0)

command を表示してから IO.popen の実行します。

...command を表示してから IO.popen の実行します。

@param command コマンド名を指定します。

@param mode オープンする IO ポートのモードを指定します。mode の詳細は Kernel.#open 参照して下さい。

@see IO.popen...

Kernel#file(*args) { ... } -> Rake::FileTask (27043.0)

ファイルタスクを定義します。

ファイルタスクを定義します。

@param args ファイル名と依存ファイル名を指定します。

例:
file "config.cfg" => ["config.template"] do
open("config.cfg", "w") do |outfile|
open("config.template") do |infile|
while line = infile.gets
outfile.puts line
end
end
end
end

@see Rake:...