9 lines
193 B
Bash
Executable File
9 lines
193 B
Bash
Executable File
#!/usr/local/bin/bash
|
|
#
|
|
# A script to get the URLs from the SHA256s
|
|
#
|
|
|
|
while IFS= read -r line; do
|
|
sqlite3 annotations.db "SELECT url FROM webpage WHERE sha256='$line';";
|
|
done < /tmp/sha256
|