This commit is contained in:
2025-09-13 20:32:14 +02:00
parent ccfef01406
commit 7dba9009b9
2 changed files with 28 additions and 0 deletions

13
bin2.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Array, um die gefundenen Binary-Pakete zu speichern
binary_packages=()
installed_packages=$(pacman -Qe)
for package in $installed_packages; do
aur_search_result=$(yay -Si "^$package-bin$" | grep "Name" | awk '{print $3}')
if [[ ! -z $aur_search_result ]]; then
echo "Binary-Version verfügbar im AUR: $package-bin"
fi
done