るりまサーチ

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

別のキーワード

  1. shell/builtin-command new
  2. etc sc_shell
  3. shell/builtin-command each
  4. shell debug
  5. shell notify

ライブラリ

キーワード

検索結果

<< < 1 2 3 > >>

Shell::SystemCommand#super_each -> () (6007.0)

@todo

...@todo

Shell
::Filter#each です。...

Shell::SystemCommand#active? -> bool (6001.0)

@todo

@todo

Shell::SystemCommand#command -> String (6001.0)

@todo

@todo

コマンド名を返します。

Shell::SystemCommand#each(rs = nil) {|line| ... } (6001.0)

@todo

@todo

@param rs

Shell::SystemCommand#flush -> () (6001.0)

@todo

@todo

絞り込み条件を変える

Shell::SystemCommand#input=(inp) (6001.0)

@todo

@todo

Shell::SystemCommand#kill(signal) -> Integer (6001.0)

自身のプロセスにシグナルを送ります。

自身のプロセスにシグナルを送ります。

@param signal シグナルを整数かその名前の文字列で指定します。
負の値を持つシグナル(あるいはシグナル名の前に-)を指定すると、
プロセスではなくプロセスグループにシグナルを送ります。

@see Process.#kill

Shell::SystemCommand#name -> String (6001.0)

@todo

@todo

コマンド名を返します。

Shell::SystemCommand#start -> () (6001.0)

@todo

@todo

Shell::SystemCommand#start_export (6001.0)

@todo

@todo

絞り込み条件を変える

Shell::SystemCommand#start_import -> () (6001.0)

@todo

@todo

Shell::SystemCommand#terminate -> () (6001.0)

@todo

@todo

Shell::SystemCommand#wait? -> bool (6001.0)

@todo

@todo

Shell::CommandProcessor#cat(*files) -> Shell::Filter (3126.0)

実行すると, それらを内容とする 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) | te...

Shell::CommandProcessor#echo(*strings) -> Shell::Filter (3126.0)

実行すると, それらを内容とする Filter オブジェクトを返します.

...す.

@param strings シェルコマンド 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...

絞り込み条件を変える

Shell::CommandProcessor#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) | te...

Shell::CommandProcessor#tee(file) -> Shell::Filter (3126.0)

実行すると, それらを内容とする Filter オブジェクトを返します.

....

@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) | te...

Shell::Filter#cat(*files) -> Shell::Filter (3126.0)

実行すると, それらを内容とする 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) | te...
<< < 1 2 3 > >>