Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- cd /var/cache/pacman/pkg/
- IFS=$'\n'
- packages=($(pacman -Qqg qt5))
- unset IFS
- for i in $packages; do
- echo "Downgrading"; echo "$i"
- pacman -U --noconfirm $( ls "$i-5.7*" | tail -n1 )
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement