File: lftp

package info (click to toggle)
apt-zip 0.9
  • links: PTS
  • area: main
  • in suites: potato
  • size: 84 kB
  • ctags: 37
  • sloc: sh: 291; makefile: 63; awk: 10
file content (14 lines) | stat: -rwxr-xr-x 162 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/awk -f

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

/'http:/ {
  exit 1;
}

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