To update some certain packages only 04 October 2021, 14:32:26 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 #1 – 04 October 2021, 14:42:11 https://wiki.archlinux.org/title/Pacmanhttps://forum.artixlinux.org/index.php/topic,1923.0.html
Re: To update some certain packages only Reply #2 – 04 October 2021, 14:52:37 Quote from: mardiyah – on 04 October 2021, 14:32:26How 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 advanceTry,Code: [Select]$sudo pacman -S $(pacman -Ssq 'py.+' ) 1 Likes