dev/bash/scripts/privateMe.sh

20 lines
496 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
# Очистить историю, кеши , корзину а также память
rm -rf /won/.Trash*
rm -rf ~/.local/share/Trash
rm -rf ~/.thumbnails
mozdir=~/.mozilla/firefox/*
rm -rf $mozdir/Cache
rm -f $mozdir/*history*
for f in content-prefs.sqlite cookies.sqlite; do
rm -f $mozdir/$f
done
rm -f ~/.recently-used.xbel
rm -f ~/.recently-used
rm -f ~/.nautilus/saved-session-*
rm -f ~/.compiz/session/*
rm -f ~/.metacity/sessions/*.ms
killall nautilus gnome-panel
exit 0