dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

safari_history (197B)


      1 #!/usr/bin/env bash
      2 n=${1:-10}
      3 sqlite3 $HOME/Library/Safari/History.db "select datetime(visit_time+978307200, 'unixepoch', 'localtime'),title from history_visits ORDER BY visit_time desc LIMIT $n;"