How do we update some certain packages by pacman ?
E.g how do we update only packages (in regex syntax) py.+
as below not work:
$ sudo pacman -S 'py.+'
error: target not found: py.+
Please help out, thanks in advance
$sudo pacman -S $(pacman -Ssq 'py.+' )