Skip to content

Instantly share code, notes, and snippets.

@polonskiy
Last active February 24, 2016 07:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save polonskiy/0e7aff316329d159e727 to your computer and use it in GitHub Desktop.
Save polonskiy/0e7aff316329d159e727 to your computer and use it in GitHub Desktop.
remove old kernels
#!/bin/bash
dpkg -l | awk '/linux-image-[0-9]/ {print $2}' | grep -vF "$(uname -r)" | xargs -r apt-get -y purge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment