150件ヒット
[1-100件を表示]
(0.170秒)
別のキーワード
ライブラリ
- pathname (12)
-
rubygems
/ specification (48) - shell (30)
-
shell
/ command-processor (30) -
shell
/ filter (30)
クラス
-
Gem
:: Specification (48) - Pathname (12)
- Shell (30)
-
Shell
:: CommandProcessor (30) -
Shell
:: Filter (30)
キーワード
- echo (18)
-
extra
_ rdoc _ files= (12) - files= (12)
- glob (18)
- tee (18)
-
test
_ files= (12) -
test
_ suite _ file= (12) - truncate (30)
検索結果
先頭5件
-
Shell
# cat(*files) -> Shell :: Filter (24344.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...る Filter オブジェクトを返します.
@param files シェルコマンド cat に与えるファイル名を文字列で指定します。
動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!......cat(file).each { |l|
echo(l) | tee(file + ".tee") >> "all.tee"
}
}
}... -
Shell
:: CommandProcessor # cat(*files) -> Shell :: Filter (24344.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...る Filter オブジェクトを返します.
@param files シェルコマンド cat に与えるファイル名を文字列で指定します。
動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!......cat(file).each { |l|
echo(l) | tee(file + ".tee") >> "all.tee"
}
}
}... -
Shell
:: Filter # cat(*files) -> Shell :: Filter (24344.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...る Filter オブジェクトを返します.
@param files シェルコマンド cat に与えるファイル名を文字列で指定します。
動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!......cat(file).each { |l|
echo(l) | tee(file + ".tee") >> "all.tee"
}
}
}... -
Gem
:: Specification # test _ suite _ file=(file) (18415.0) -
この属性は非推奨です。 Gem::Specification#test_files= を使用してください。
...この属性は非推奨です。 Gem::Specification#test_files= を使用してください。
@param file テストスイートのファイルを指定します。... -
Gem
:: Specification # test _ files=(files) (15307.0) -
ユニットテストのファイルのリストをセットします。
...ユニットテストのファイルのリストをセットします。
@param files ユニットテストのファイルのリストを指定します。... -
Shell
:: Filter # truncate(path , length) -> 0 (15235.0) -
File クラスにある同名のクラスメソッドと同じです.
...
File クラスにある同名のクラスメソッドと同じです.
@param path パスを表す文字列を指定します。
@param length 変更したいサイズを整数で与えます。
@see File.truncate... -
Gem
:: Specification # extra _ rdoc _ files=(paths) (15207.0) -
RDoc でドキュメントを作成する際に使用する特別なファイルのリストをセットします。
...RDoc でドキュメントを作成する際に使用する特別なファイルのリストをセットします。
@param paths RDoc でドキュメントを作成する際に使用する特別なファイルのリストを指定します。... -
Shell
# truncate(path , length) -> 0 (12235.0) -
File クラスにある同名のクラスメソッドと同じです.
...
File クラスにある同名のクラスメソッドと同じです.
@param path パスを表す文字列を指定します。
@param length 変更したいサイズを整数で与えます。
@see File.truncate... -
Shell
:: CommandProcessor # truncate(path , length) -> 0 (12235.0) -
File クラスにある同名のクラスメソッドと同じです.
...
File クラスにある同名のクラスメソッドと同じです.
@param path パスを表す文字列を指定します。
@param length 変更したいサイズを整数で与えます。
@see File.truncate... -
Pathname
# truncate(length) -> 0 (12229.0) -
File.truncate(self.to_s, length) と同じです。
...File.truncate(self.to_s, length) と同じです。
@param length 変更したいサイズを整数で与えます。
@see File.truncate... -
Gem
:: Specification # files=(files) (12207.0) -
この Gem パッケージに含まれるファイル名の配列をセットします。
...この Gem パッケージに含まれるファイル名の配列をセットします。
@param files この Gem パッケージに含まれるファイル名の配列を指定します。... -
Shell
:: Filter # tee(file) -> Shell :: Filter (9344.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...lter オブジェクトを返します.
@param file シェルコマンドtee に与えるファイル名を文字列で指定します。
動作例
require 'shell'
Shell.def_system_command("head")
sh = Shell.new
sh.transact {
glob("*.txt").to_a.each { |file|
file.chomp!
cat......(file).each { |l|
echo(l) | tee(file + ".tee") >> "all.tee"
}
}
}...