8 lines
154 B
Text
8 lines
154 B
Text
|
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
|