dotfiles/.local/bin/unfuck_empty_packages
2023-12-20 22:52:16 -05:00

7 lines
154 B
Text
Executable file

LANG=en_EN ldconfig 2> err.txt
for file in $(cut -d" " -f3 err.txt)
do
echo $file
pacman -S $(pacman -Fq $file) --noconfirm --overwrite "*"
done