melanie

melanie / history-book-to-hister.sh

Last active 4 hours ago

Like 0

Revision 2d4e2f90f1ea62c9e7c220770ab14b62db1bf69c

history-book-to-hister.sh Raw
1sqlite3 -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"
8done