るりまサーチ

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

別のキーワード

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

ライブラリ

キーワード

検索結果

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

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

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

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

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

@see IO.popen...

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

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

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

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

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

@see IO.popen...

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

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

...aram 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...