On Fri January 14 2022 13:30:38 goro.ddaimonx(a)gmail.com wrote:
I found this:
dpkg -l | grep 4:14
rc amarok-common-trinity 4:14.0.11-0ubuntu20.04.0+0
all architecture independent files for Amarok [Trinity]
<many
similar lines snipped>
Those packages are already removed. Your question was about r"emoving"
so technically there is nothing you need do. However if you wish to
also purge them you can:
dpkg --dry-run --purge $(dpkg -l | grep 4:14 | awk '{print $2}')
- and if it looks OK to you do it again without the --dry-run.
(You might have to do it more than once due to dependencies.)
--Mike