Skip to content

Instantly share code, notes, and snippets.

@bastjan
Created August 22, 2018 14:11
Show Gist options
  • Save bastjan/4708608d7763f0041ffd061111f53e7c to your computer and use it in GitHub Desktop.
Save bastjan/4708608d7763f0041ffd061111f53e7c to your computer and use it in GitHub Desktop.
Purge old kernels on ubuntu
#!/bin/bash
dpkg -l | grep '^rc' | awk '{print $2}' | grep 'linux-image' | xargs sudo apt purge -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment