36件ヒット
[1-36件を表示]
(0.048秒)
別のキーワード
検索結果
先頭3件
-
Rake
:: PackageTask # tar _ command=(command) (6216.0) -
tar コマンドとして使用するコマンドを設定します。
...tar コマンドとして使用するコマンドを設定します。
@param command コマンドを文字列で指定します。... -
Rake
:: PackageTask # zip _ command=(command) (6216.0) -
zip コマンドとして使用するコマンドを設定します。
...zip コマンドとして使用するコマンドを設定します。
@param command コマンドを文字列で指定します。... -
FileUtils
# sh(*cmd) {|result , status| . . . } (21.0) -
与えられたコマンドを実行します。
...ルを経由しないでコマンドを実行します。
@param cmd 引数の解釈に関しては Kernel.#exec を参照してください。
例:
sh %{ls -ltr}
sh 'ls', 'file with spaces'
# check exit status after command runs
sh %{grep pattern file} do |ok, res|
if !......ok
puts "pattern not found (status = #{res.exitstatus})"
end
end
@see Kernel.#exec, Kernel.#system...