melanie

melanie / history-book-to-hister.sh

Last active 3 hours ago

Like 0
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