I'm looking for a way to show the list of the installed softwares ordered from newest to oldest.
So far I know only how to show the list of installed softwares:
apt list --installed
or:
apt list -i
I'm looking for a way to show the list of the installed softwares ordered from newest to oldest.
So far I know only how to show the list of installed softwares:
apt list --installed
or:
apt list -i
not an apt command, but you can find the history of your installs in /var/log/apt/history.log
For scripts and methods to generate a sorted list, I suggest you take a look at the following question: List packages on an apt based system by installation date.