# File lib/blimpy/cli.rb, line 127
    def ssh(name, *args)
      ensure_blimpfile
      box = box_by_name(name)
      if box.nil?
        puts "Could not find a blimp named \"#{name}\""
        exit 1
      end
      box.wait_for_sshd
      box.ssh_into
    end