ART: Personal Internet Cache Archive


/ Published in: Bash
Save to your folder(s)

Inspired: http://evan-roth.com/personal-internet-cache-archive/

In the "style=" you can adjust the "height: ??px" according to the quantity of items in your cache.


Copy this code and paste it in your HTML
  1. for ii in `file .mozilla/firefox/*/Cache/*/*/* | grep image | cut -d":" -f1` ; do
  2. echo "<img src=\"$ii\" style=\"float: left; height: 50px;\" />" ; done > ~/artcache.html
  3. firefox ~/artcache.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.