10 lines
204 B
Bash
10 lines
204 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
sudo clear
|
||
|
|
echo 'Cleaning...'
|
||
|
|
sudo apt install bleachbit
|
||
|
|
bleachbit --clean system.tmp system.cache system.trash deepscan.tmp deepscan.thumbs_db deepscan.ds_store
|
||
|
|
echo 'Done.'
|
||
|
|
read -n1
|
||
|
|
clear
|