From 9e07df5b2275ffb1580531e80cbf47f022f5411d Mon Sep 17 00:00:00 2001 From: Josh North Date: Wed, 1 Jun 2016 12:28:33 -0400 Subject: [PATCH] Update cleanup.sh --- cleanup.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cleanup.sh b/cleanup.sh index 53eb117..2ed1cda 100644 --- a/cleanup.sh +++ b/cleanup.sh @@ -17,8 +17,7 @@ rm -rf /var/lib/apt/lists # Delete some documentation find /usr/share/doc -depth -type f ! -name copyright|xargs rm -rf find /usr/share/doc -empty|xargs rmdir || true -rm -rf /usr/share/man/* /usr/share/groff/* /usr/share/info/* -rm -rf /usr/share/lintian/* /usr/share/linda/* /var/cache/man/* +rm -rf /usr/share/man/* /usr/share/groff/* /usr/share/info/* /usr/share/lintian/* /usr/share/linda/* /var/cache/man/* find /usr/share/doc | egrep "\.gz" | xargs rm -rf find /usr/share/doc | egrep "\.pdf$" | xargs rm -rf find /usr/share/doc | egrep "\.tex$" | xargs rm -rf @@ -27,6 +26,9 @@ find /usr/share/doc | egrep "\copyright" | xargs rm -rf find /usr/share/locale -mindepth 1 -maxdepth 1 ! -name 'en' |xargs rm -rf # Delete old log files logrotate -f /etc/logrotate.conf -#find /var/log -type f -regex '.*/[^/]*.gz$' -delete && find /var/log -type f -regex '.*/[^/]*.[0-9]$' -delete +find /var/log -type f -regex '.*/[^/]*.gz$' -delete && find /var/log -type f -regex '.*/[^/]*.[0-9]$' -delete +# Purge root and current user history +cat /dev/null > /root/.bash_history +cat /dev/null > ~/.bash_history exit 0 # EOF