回答:
最速の方法がapticronで表示されると思います。
https://salsa.debian.org/debian/apticron/blob/master/apticron#L121-154
これは次のように蒸留できます。
apt-get -q -y --ignore-hold --allow-change-held-packages --allow-unauthenticated -s dist-upgrade | /bin/grep ^Inst | wc -l
コマンドを実行するだけです:
sudo apt-get update && sudo apt-get upgrade
更新プロセスの実行後、upgrade
コマンドの出力は次のようになります。
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages will be upgraded:
wine1.5 wine1.5-i386
2 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 24.1 MB of archives.
After this operation, 286 kB of additional disk space will be used.
Do you want to continue [Y/n]?
6行目には2つのアップグレードが利用可能であることが記載されており、5行目にはアップグレードが利用可能なパッケージがリストされています。その時点でアップグレードをインストールする気がない場合は、続けて押しnます。
ストレートでシンプル。
注:カーネルの更新も利用できる場合は、と表示され<x> not upgraded
ます。