#!/usr/bin/awk -f

BEGIN {
  print("#!/bin/sh");
  print("# auto-generated file from apt-zip-list");
}

/'http:/ {
  exit 1;
}

{
  print "wget -O " $2 " " $1;
}
