mybin

my ~/bin
git clone https://a3nm.net/git/mybin/
Log | Files | Refs | README

leftover-packages.sh (221B)


      1 #!/bin/bash
      2 
      3 # https://unix.stackexchange.com/q/397136
      4 
      5 apt-get -s autoremove -qq \
      6   -o Apt::AutoRemove::RecommendsImportant=false \
      7   -o Apt::AutoRemove::SuggestsImportant=false |
      8   grep '^Remv' | cut -d' ' -f2 | sort
      9