るりまサーチ (Ruby 2.5.0)

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

別のキーワード

  1. _builtin to_proc
  2. _builtin proc
  3. proc curry
  4. httpserver mount_proc
  5. readline completion_proc

検索結果

Shell#command_processor -> Shell::CommandProcessor (18604.0)

@todo

@todo

Shell#process_controller -> Shell::ProcessController (18604.0)

@todo

@todo

Shell.undef_system_command(command) -> Shell::CommandProcessor (304.0)

commandを削除します.

...mmand 削除するコマンドの文字列を指定します。

動作例:
require 'shell'
Shell
.def_system_command("ls")
# ls を定義
Shell
.undef_system_command("ls")
# ls を 削除

sh = Shell.new
begin
sh.transact {
ls("-l").each {|l|
puts l
}
}
r...