Skip to content

Instantly share code, notes, and snippets.

@JeffreyVdb
Created August 20, 2014 23:36
Show Gist options
  • Save JeffreyVdb/092bf6131a53b43cd650 to your computer and use it in GitHub Desktop.
Save JeffreyVdb/092bf6131a53b43cd650 to your computer and use it in GitHub Desktop.
LinuxTools
#!/bin/bash
shopt -s dotglob
# clean up download folders
for d in /home/*/Downloads; do
echo "removing files in $d"
rm -rf $d/*
done
# Remove old kernels with magic
dpkg --list | egrep 'linux-(image|headers)' | sed "/$(uname -r)/d" | perl -pe \
's#^[i]{2}\s+?([a-zA-Z0-9\-\.]+?)\s+.*$#$1#;s#\n# #gm' | xargs sudo apt-get purge -y
# remove unused packages etc...
apt-get autoremove -y
apt-get clean
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment