mirror of
https://github.com/alecmuffett/real-world-onion-sites.git
synced 2024-10-01 01:06:18 -04:00
6 lines
153 B
Bash
6 lines
153 B
Bash
|
#!/bin/sh
|
||
|
db=fetch.sqlite3
|
||
|
for onion in "$@" ; do
|
||
|
sqlite3 -readonly $db "select * from fetches where url like '%${onion}%' order by ctime asc;"
|
||
|
done
|