blob: a50ee52c47f6b3806ac17490b3e3d14e4a109da7 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
sudo find /var/log/ -type f -exec rm -f {} \;
sudo rm -f /Library/Logs/DiagnosticReports/*
rm -f ~/Library/Application Support/CrashReporter/*
rm -f ~/.bash_sessions/*
exit 0
|