class Byebug::Command

def command_exists?(command)

def command_exists?(command)
  ENV['PATH'].split(File::PATH_SEPARATOR).any? {
    |d| File.exists? File.join(d, command) }
end