From 3d03267138102bf1f5ab60c66e0fcca18db3b6cd Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 1 Oct 2020 23:56:47 -0300 Subject: Initial version of export-firefox-bookmarks --- export-firefox-bookmarks | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 export-firefox-bookmarks diff --git a/export-firefox-bookmarks b/export-firefox-bookmarks new file mode 100755 index 0000000..18d249a --- /dev/null +++ b/export-firefox-bookmarks @@ -0,0 +1,13 @@ +#!/usr/bin/env/bash +# +# Export Mozilla Firefox bookmarks. +# Based on https://github.com/pirate/ArchiveBox/blob/master/bin/export_browser_history.sh +# + +# Base folder to work on +BASEDIR="$HOME/.mozilla" + +# There might be many places.sqlite on many profiles +find $BASEDIR -name places.sqlite | while read file; do \ + sqlite3 $file "SELECT \"[\" || group_concat(json_object('timestamp', b.dateAdded, 'description', b.title, 'href', f.url)) || \"]\" FROM moz_bookmarks AS b JOIN moz_places AS f ON f.id = b.fk" +done -- cgit v1.2.3