You are not logged in.
When trying to remove unused dependencies with 'pacman -Rs $ (pacman -Qdtq)' it gives a syntax error seemingly concerning symbol >(<
$ sudo pacman -R $ (pacman -Qtdq)
bash: Syntaxfehler beim unerwarteten Symbol »(«.Offline
There is no gap between $ and (
Last edited by jasonwryan (2022-05-06 20:51:56)
Offline
#no
echo $ (pacman -Qtdq)
#yes
echo $(pacman -Qtdq)Mass removing files like that is scary. You may want to look a them one at a time.
Offline
awesome thanks!
Offline
Please remember to mark your thread [SOLVED] (edit the title of your first post).
Offline
Another option is using pipes:
pacman -Qtdq | sudo pacman -R - I'm just someone. Please use [code] [/code] tags.
Offline