Created
August 18, 2014 08:41
-
-
Save filviu/fa2a7fcacd9cad5ae038 to your computer and use it in GitHub Desktop.
Optimize firefox databases (or any other sqlite db)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for file in ~/.mozilla/firefox/*/*.sqlite; do | |
sqlite3 $file 'VACUUM;' | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment