#!/bin/sh -e
history=`echo $HOME/.mozilla/firefox/*.default/places.sqlite`
query="select url from moz_places order by last_visit_date desc;"
sqlite3 "$history" "$query"
