# File lib/blimpy/cli.rb, line 150
    def scp(name, filename, *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
      # Pass any extra commands along to the `scp` invocation
      box.scp_file(filename, '', *ARGV[3..-1])
    end