InvalidPath wrote: > On Wed, Jan 24, 2018 at 4:31 PM, Ed Greshko <ed.greshko@xxxxxxxxx> wrote: >> If you know which packages you want to remain have you tried adding >> --exclude to the >> dnf command? [...] > $ sudo dnf remove @gnome-desktop --exclude=qemu* > zsh: no matches found: --exclude=qemu* You need to quote or escape the glob. I believe that by default zsh will warn you when you pass a glob which the shell attempts to expand and there are no matches. With bash, this doesn't happen by default, but it's still a good habit to quote/escape globs like this. $ sudo dnf remove @gnome-desktop --exclude='qemu*' or $ sudo dnf remove @gnome-desktop --exclude=qemu\* -- Todd ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ One of the symptoms of an approaching nervous breakdown is the belief that one's work is terribly important. -- Bertrand Russell (1872-1970)
Attachment:
signature.asc
Description: PGP signature
_______________________________________________ users mailing list -- users@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to users-leave@xxxxxxxxxxxxxxxxxxxxxxx