Skip to content

Instantly share code, notes, and snippets.

@ProjectInitiative
Created January 27, 2020 04:35
Show Gist options
  • Save ProjectInitiative/57421bac93af07124f72d0c811990cb4 to your computer and use it in GitHub Desktop.
Save ProjectInitiative/57421bac93af07124f72d0c811990cb4 to your computer and use it in GitHub Desktop.
Returns all of the manually installed programs on a Linux system.
#!/usr/bin/env bash
comm -23 <(apt-mark showmanual | sort -u) <(gzip -dc /var/log/installer/initial-status.gz | sed -n 's/^Package: //p' | sort -u)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment