4件ヒット
[1-4件を表示]
(0.068秒)
別のキーワード
ライブラリ
キーワード
- concat (1)
-
finish
_ all _ jobs (1) - join (1)
- transact (1)
検索結果
先頭4件
-
Shell
:: CommandProcessor # join(*item) -> String (18307.0) -
File クラスにある同名のクラスメソッドと同じです.
File クラスにある同名のクラスメソッドと同じです.
@param item 連結したいディレクトリ名やファイル名を文字列で与えます。
@see File.join -
Shell
:: CommandProcessor # finish _ all _ jobs (9307.0) -
@todo
@todo -
Shell
:: CommandProcessor # concat(*jobs) -> Shell :: Concat (307.0) -
@todo
@todo -
Shell
:: CommandProcessor # transact { . . . } -> object (307.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 と同じとなる。
}