Skip to content

Instantly share code, notes, and snippets.

@GianpaMX
Created November 11, 2013 05:14
Show Gist options
  • Save GianpaMX/7408257 to your computer and use it in GitHub Desktop.
Save GianpaMX/7408257 to your computer and use it in GitHub Desktop.
Remove old kernels on Debian / Ubuntu. Move it to /sbin/ and add execution permision.
#!/bin/bash
dpkg -l linux-* | awk '/^ii/{ print $2}' | grep -v -e `uname -r | cut -f1,2 -d"-"` | grep -e [0-9] | xargs sudo apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment