On Sat, 4 Nov 2023, RVP wrote:
1) Allowing shell-like patterns (not hard to implement):uc> disable *drm* *usb$ # all with `drm' anywhere and those ending in
Ah, since these are shell-like patterns there's not need for a `$' to denote EOL. So: uc> disable *drm* *usb # all with `drm' anywhere, and those ending in `usb' -RVP