英文:
List pacman upgradable packages without "-version"
问题
pacman -Qu
和garuda-update
都以某种形式列出版本号。
英文:
How could I list all packages that need upgrading without the -version postfix in pacman so I can copy paste a portion for pacman -S.
Current output : acl-2.3.1-3 akonadi-22.12.2-1...etc
Required output : acl akonadi...etc
Thanks.
pacman -Qu & garuda-update; Both list versions in some form.
答案1
得分: 0
以下命令会生成所需的输出。
checkupdates | cut -d ' ' -f1 | xargs
附注:不建议进行部分升级,自行决定是否使用。
英文:
The following command produces the required output.
checkupdates | cut -d ' ' -f1 | xargs
ps. Partial upgrades aren't recommended, use on your own discretion.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论