るりまサーチ

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

別のキーワード

  1. _builtin new
  2. _builtin inspect
  3. _builtin []
  4. _builtin to_s
  5. _builtin each

ライブラリ

クラス

検索結果

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

commandを削除します.

...列を指定します。

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

sh = Shell.new
begin
sh.transact {
l
s("-l").each {|l|
puts l
}
}
rescue NameError => err
puts err
e...

Shell::CommandProcessor.undef_system_command(command) -> self (21201.0)

与えられたコマンドを削除します。

与えられたコマンドを削除します。

@param command 削除したいコマンド名を指定します。