36件ヒット
[1-36件を表示]
(0.077秒)
検索結果
先頭3件
-
Rake
:: PackageTask # tar _ command=(command) (15316.0) -
tar コマンドとして使用するコマンドを設定します。
...
tar コマンドとして使用するコマンドを設定します。
@param command コマンドを文字列で指定します。... -
Rake
:: PackageTask # zip _ command=(command) (9216.0) -
zip コマンドとして使用するコマンドを設定します。
...zip コマンドとして使用するコマンドを設定します。
@param command コマンドを文字列で指定します。... -
FileUtils
# sh(*cmd) {|result , status| . . . } (3121.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.exitsta......tus})"
end
end
@see Kernel.#exec, Kernel.#system...