るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.028秒)
トップページ > クエリ:Proc[x] > クエリ:command[x] > クエリ:new[x] > 種類:特異メソッド[x]

別のキーワード

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

ライブラリ

クラス

検索結果

Shell::CommandProcessor.new(shell) (24102.0)

@todo

@todo

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

commandを削除します.

...
command
を削除します.

@param command 削除するコマンドの文字列を指定します。

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

sh = Shell.new
begin
sh.transact {
ls("-l").each...