You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
287 B

#!/bin/bash
# optimize firefox sqlite databases
if [ "$(pgrep -c firefox)" = "0" ] ; then
find ~/.mozilla -name \*.sqlite|while read -r i ; do
echo "Optimizing \"$i\"..."
sqlite3 "$i" vacuum
sqlite3 "$i" reindex
done
echo "done"
else
echo "Firefox is running..."
exit 1
fi