るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.136秒)
トップページ > 種類:インスタンスメソッド[x] > クエリ:p[x] > クエリ:j[x] > クラス:Shell::CommandProcessor[x]

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. dh p
  5. rsa p

ライブラリ

キーワード

検索結果

Shell::CommandProcessor#join(*item) -> String (9102.0)

File クラスにある同名のクラスメソッドと同じです.

...File クラスにある同名のクラスメソッドと同じです.

@param item 連結したいディレクトリ名やファイル名を文字列で与えます。

@see File.join...

Shell::CommandProcessor#finish_all_jobs (6102.0)

@todo

@todo

Shell::CommandProcessor#concat(*jobs) -> Shell::Concat (3102.0)

@todo

@todo

Shell::CommandProcessor#transact { ... } -> object (3102.0)

ブロック中で shell を self として実行します。

ブロック中で shell を self として実行します。

例:

require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact{
system("ls", "-l") | head > STDOUT
# transact の中では、
# sh.system("ls", "-l") | sh.head > STDOUT と同じとなる。
}