Skip to content

Instantly share code, notes, and snippets.

@cwmoriarty
Last active September 30, 2024 15:00
Show Gist options
  • Select an option

  • Save cwmoriarty/6bbe7e559038e09ae35fe360cff739ad to your computer and use it in GitHub Desktop.

Select an option

Save cwmoriarty/6bbe7e559038e09ae35fe360cff739ad to your computer and use it in GitHub Desktop.
apt-history
function apt-history(){
case "$1" in
install)
cat /var/log/dpkg.log | grep 'install '
;;
upgrade|remove)
cat /var/log/dpkg.log | grep $1
;;
rollback)
cat /var/log/dpkg.log | grep upgrade | \
grep "$2" -A10000000 | \
grep "$3" -B10000000 | \
awk '{print $4"="$5}'
;;
*)
cat /var/log/dpkg.log
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment