るりまサーチ

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

別のキーワード

  1. shell unalias_command
  2. commandprocessor unalias_command
  3. shell/command-processor unalias_command
  4. unalias_command shell
  5. unalias_command shell::commandprocessor

ライブラリ

クラス

検索結果

Shell.unalias_command(alias) -> () (18119.0)

commandのaliasを削除します.

...ls")
Shell.alias_command("lsla", "ls", "-a", "-l")
Shell.def_system_command("sort")
sh = Shell.new
sh.transact {
(lsla | sort("-k 5")).each {|l|
puts l
}
}
Shell.unalias_command("lsla")
begin
Shell.unalias_command("lsla")
rescue NameError => err
puts err
end...