るりまサーチ

最速Rubyリファレンスマニュアル検索!
24件ヒット [1-24件を表示] (0.011秒)
トップページ > クエリ:![x] > クラス:Shell[x]

別のキーワード

  1. _builtin slice!
  2. _builtin reject!
  3. _builtin select!
  4. string slice!
  5. string gsub!

ライブラリ

キーワード

検索結果

Shell#cat(*files) -> Shell::Filter (7.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 (7.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 (7.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 (7.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"
}...