-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathclean_tmp_folder_JBs.sh
executable file
·109 lines (97 loc) · 3.25 KB
/
clean_tmp_folder_JBs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/bin/bash
#
# Autor= João Batista Ribeiro
# Bugs, Agradecimentos, Críticas "construtivas"
# me envie um e-mail. Ficarei Grato!
# e-mail: [email protected]
#
# Este programa é um software livre; você pode redistribui-lo e/ou
# modifica-lo dentro dos termos da Licença Pública Geral GNU como
# publicada pela Fundação do Software Livre (FSF); na versão 2 da
# Licença, ou (na sua opinião) qualquer versão.
#
# Este programa é distribuído na esperança que possa ser útil,
# mas SEM NENHUMA GARANTIA; sem uma garantia implícita de ADEQUAÇÃO a
# qualquer MERCADO ou APLICAÇÃO EM PARTICULAR.
#
# Veja a Licença Pública Geral GNU para mais detalhes.
# Você deve ter recebido uma cópia da Licença Pública Geral GNU
# junto com este programa, se não, escreva para a Fundação do Software
#
# Livre(FSF) Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Script: Clean some logs from home folder ($HOME_USER) and /tmp/ folder
#
# Last update: 19/09/2023
# Tip: pass all to clean empty files/folder in /tmp
#
HOME_USER=$HOME
CLEAN_ALL=$1
echo -e "\n # Script to clean some logs from home folder ($HOME_USER) and /tmp/ folder #\n"
echo -en "Continue? (y)es or (n)o (enter to continue): "
read -r continue_or_not
if [ "$continue_or_not" != 'y' ] && [ "$continue_or_not" != '' ]; then
echo -e "\nJust exiting\n"
exit 0
fi
filesFoldersToRermove=("$HOME_USER/.cache/thumbnails/"
"$HOME_USER/.thumbnails/"
"$HOME_USER/.xsession-errors"
"$HOME_USER/.config/VirtualBox/*log*"
"$HOME_USER/VirtualBox VMs/*/Logs/"
"$HOME_USER/.local/share/okular/docdata/*.xml" # Okular open file info/config (like last page viewed)
"/tmp/tmpaddon*"
"/tmp/lastChance*"
"/tmp/qtsingleapp-*"
"/tmp/.ktorrent_kde4_*"
"/tmp/gameoverlayui.log*"
"/tmp/dropbox-antifreeze-*"
"/tmp/steam_chrome_shmem_uid*"
"/tmp/steam_chrome_overlay_uid*"
"/tmp/mastersingleapp-master*"
"/tmp/.org.chromium.Chromium.*"
"/tmp/OSL_PIPE_*_SingleOfficeIPC_*"
"/tmp/vboxdrv-Module.symvers"
"/tmp/SBo/"
"/tmp/dumps/"
"/tmp/Temp-*/"
"/tmp/lu*.tmp/"
"/tmp/skype-*/"
"/tmp/.esd-*/"
"/tmp/.wine-*"
"/tmp/runtime-*/"
"/tmp/.vbox-*-ipc/"
"/tmp/hsperfdata_*/"
"/tmp/skypeforlinux*/"
"/tmp/Slack Crashes/"
"/tmp/smartsynchronize-*/"
"/tmp/org.cogroo.addon.*/"
"/tmp/v8-compile-cache-*/"
"/tmp/.org.chromium.Chromium.*/"
"/tmp/com.microsoft.teams.linux Crashes/")
# Can be useful if add to filesFoldersToRermove
# "$HOME_USER/.cache/"
# "/tmp/plasma-csd-generator.*"
# "/tmp/plasma-csd-generator.*/"
IFS=$(echo -en "\n\b") # Change the Internal Field Separator (IFS) to "\n\b"
for val in ${filesFoldersToRermove[*]}; do
#echo "val: \"$val\""
# Show errors (files and folders not found)
#rm -vr "$val"
# Default - not show errors
rm -fvr "$val"
done
if [ "$CLEAN_ALL" == "all" ]; then # Delete .ICE-unix .X11-unix plasma-csd-generator.* sddm-auth*
echo -en "\nDelete empty files/folders in /tmp/ folder. Continue? (y)es or (n)o: "
read -r continue_or_not
if [ "$continue_or_not" == 'y' ]; then
# Delete empty (zero size) folder and files in /tmp/
cd /tmp/ || exit
find . -size 0 -print -delete
find . -empty -print -delete
echo -e "\n # Recommendation: Restart your system! #"
else
echo -e "\nJust exiting\n"
fi
fi
echo -e "\nEnd of script!\n"