78件ヒット
[1-78件を表示]
(0.010秒)
クラス
- Shell (24)
-
Shell
:: CommandProcessor (24) -
Shell
:: Filter (30)
検索結果
先頭5件
-
Shell
# cat(*files) -> Shell :: Filter (9.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...at に与えるファイル名を文字列で指定します。
動作例
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
# echo(*strings) -> Shell :: Filter (9.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ンド echo に与える引数を文字列で指定します。
動作例
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
# glob(pattern) -> Shell :: Filter (9.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...書式については、Dir.[] を参照してください。
動作例
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
# tee(file) -> Shell :: Filter (9.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ee に与えるファイル名を文字列で指定します。
動作例
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 (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...at に与えるファイル名を文字列で指定します。
動作例
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 # echo(*strings) -> Shell :: Filter (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ンド echo に与える引数を文字列で指定します。
動作例
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 # glob(pattern) -> Shell :: Filter (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...書式については、Dir.[] を参照してください。
動作例
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 # tee(file) -> Shell :: Filter (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ee に与えるファイル名を文字列で指定します。
動作例
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 (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...at に与えるファイル名を文字列で指定します。
動作例
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 # echo(*strings) -> Shell :: Filter (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ンド echo に与える引数を文字列で指定します。
動作例
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 # glob(pattern) -> Shell :: Filter (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...書式については、Dir.[] を参照してください。
動作例
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 # tee(file) -> Shell :: Filter (8.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...ee に与えるファイル名を文字列で指定します。
動作例
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 # |(filter) -> object (8.0) -
パイプ結合を filter に対して行います。
...て行います。
@param filter Shell::Filter オブジェクトを指定します。
@return filter を返します。
使用例
require 'shell'
Shell.def_system_command("tail")
Shell.def_system_command("head")
Shell.def_system_command("wc")
sh = Shell.new
sh.transact {
i = 1......while i <= (cat("/etc/passwd") | wc("-l")).to_s.chomp.to_i
puts (cat("/etc/passwd") | head("-n #{i}") | tail("-n 1")).to_s
i += 1
end
}...