Comm In Linux
Contents
前几天发现有几个包的Validated By项是None, 感到很疑惑, 在wiki上找到了重装所有包的方法Reinstalling_all_installed_packages
comm -23 <(pacman -Qeq|sort) <(pacman -Qmq|sort) | pacman -S -
看到了comm这个工具, 在manpage上了解到
Compare sorted files FILE1 and FILE2 line by line.
为此自己也写了些用comm的one-line-bash
paclist
: 列出当前系统不依赖于其他包, 且不包含在base和base-devel组中的包
aurneeds $package
: 列出依赖$package的AUR包(使用了pkg-tools中的whoneeds脚本)