144件ヒット
[101-144件を表示]
(0.117秒)
ライブラリ
- shell (36)
-
shell
/ builtin-command (12) -
shell
/ command-processor (36) -
shell
/ filter (60)
クラス
- Shell (36)
-
Shell
:: Cat (6) -
Shell
:: CommandProcessor (36) -
Shell
:: Concat (6) -
Shell
:: Filter (60)
検索結果
先頭5件
-
Shell
:: CommandProcessor # tee(file) -> Shell :: Filter (3126.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...与えるファイル名を文字列で指定します。
動作例
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 (3126.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 (3126.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 (3126.0) -
実行すると, それらを内容とする Filter オブジェクトを返します.
...与えるファイル名を文字列で指定します。
動作例
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 (3049.0) -
パイプ結合を filter に対して行います。
...m 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/p......asswd") | wc("-l")).to_s.chomp.to_i
puts (cat("/etc/passwd") | head("-n #{i}") | tail("-n 1")).to_s
i += 1
end
}... -
Shell
:: Filter # each(rs = nil) -> () (3025.0) -
フィルタの一行ずつをblockに渡します。
...行ずつをblockに渡します。
@param rs レコードセパレーターを表す文字列を指定します。
nil ならば、Shell.record_separatorの値が使用されます。
使用例
require 'shell'
sh = Shell.new
sh.cat("/etc/passwd").each { |line|
puts line
}... -
Shell
:: Filter # to _ a -> [String] (3025.0) -
実行結果を文字列の配列で返します。
...実行結果を文字列の配列で返します。
require 'shell'
Shell.def_system_command("wc")
sh = Shell.new
puts sh.cat("/etc/passwd").to_a... -
Shell
:: Filter # to _ s -> String (3025.0) -
実行結果を文字列で返します。
...実行結果を文字列で返します。
require 'shell'
Shell.def_system_command("wc")
sh = Shell.new
sh.transact {
puts (cat("/etc/passwd") | wc("-l")).to_s
}...