I read this: See website visit time in Safari history
In this article, there is something like this
sqlite3 ~/Library/Safari/History.db 'select visit_time,title from history_visits order by visit_time desc;' \
| while read i; do d="${i%%.*}"; echo "$(date -r $((d+978307200))) | ${i#*|}"; done \
| head -n 30
My question: how could I extend this script from 2 days to 50 days thanks for answering