Searched for tag Firefox and found 1 results in 0.5 ms

VACUUM the Firefox SQLite databases

Every so often it's a good idea to clean up the SQLite databases that Firefox uses.

for i in $(find ~/.mozilla/ -name *.sqlite); do echo "VACUUMING $i"; echo "VACUUM;" | sqlite3 $i; done;

Borrowed from here.

Tags:
Leave A Reply