Skip to main content
Topic solved
This topic has been marked as solved and requires no further attention.
Topic: To update some certain packages only (Read 479 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

To update some certain packages only

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


 

Re: To update some certain packages only

Reply #2
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

Try,

Code: [Select]
$sudo pacman -S $(pacman -Ssq  'py.+' )