apt list --installed
The above command will list all installed apps which is usually more than 100 but I need to see all apps that start with a specific word
Example:
I have installed more than 2 wine versions and I want to uninstall them
but when I write apt list --installed
, even scrolling to reach the top is time consuming so I want some way to make this list smaller like the command ls win*
in directories
Note: I'm using Ubuntu 21
apt list --installed '*wine*'
– gronostaj Aug 16 '21 at 05:31