is there a way to remove multiple deb packages at a time. I have a little under a hundred deb packages. I went to the directory with all the deb files, and I ran the command below.
sudo dpkg -r *.deb
I got this error:
dpkg: error: you must specify packages by their own names, not by quoting the names of the files they come in
Am I doing something wrong, or is there really no way to remove deb packages without doing it one at a time?
find
and pipe the result todpkg
. – Rinzwind Aug 25 '22 at 00:41dpkg
expects package names not file names - see related I want to remove .deb package in ubuntu – steeldriver Aug 25 '22 at 00:49