melanie

melanie / history-book-to-hister.sh

Last active 4 hours ago

Like 0

melanie revised this gist 4 hours ago · 2d4e2f9

1 file changed, 8 insertions

history-book-to-hister.sh (file created)
@@ -0,0 +1,8 @@
1 + sqlite3 -json ~/Library/Group\ Containers/group.com.andadinosaur.HistoryBook/History.sqlite "
2 + SELECT
3 + ZURL AS url
4 + FROM ZPAGE
5 + ORDER BY ZSAVEDAT DESC;
6 + " | jq -r '.[].url' | while read -r url; do
7 + hister index "$url"
8 + done