るりまサーチ

最速Rubyリファレンスマニュアル検索!
78件ヒット [1-78件を表示] (0.010秒)

別のキーワード

  1. _builtin chomp
  2. kernel chomp
  3. string chomp
  4. string chomp!
  5. _builtin chomp!

クラス

キーワード

検索結果

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
}...