diff --git a/ShellScripts/fix-packages.sh b/ShellScripts/fix-packages.sh new file mode 100755 index 0000000..1fedd1f --- /dev/null +++ b/ShellScripts/fix-packages.sh @@ -0,0 +1,7 @@ +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