Skip to content

Instantly share code, notes, and snippets.

@dargmuesli
Created April 1, 2019 23:05
Show Gist options
  • Save dargmuesli/d19b959743de40f408dc61ff2ca5ee6d to your computer and use it in GitHub Desktop.
Save dargmuesli/d19b959743de40f408dc61ff2ca5ee6d to your computer and use it in GitHub Desktop.
Pacman tools.
#!/bin/bash
removeorphans() {
orphans=();
while read -r
do
orphans+=("$REPLY")
done < <(pacman -Qtdq)
if [ -z "$orphans" ]
then
echo "No orphans found."
else
yay -Rns $orphans
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment