move scripts to .bin

This commit is contained in:
Nicholas Long
2022-07-06 05:30:22 +00:00
parent 37672d48b9
commit 6aa54766d9
8 changed files with 1 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/awk -f
BEGIN {
# load all the URLs we scanned already
command = "util/print-urls.sh"
while (command | getline) {
urls[$0] = 1 # add to set
}
close(command)
# get package URLs that do not appear in the list
command = "util/get-package-urls.sh"
while (command | getline) {
if (!($0 in urls)) print
}
}