Skip to content

Instantly share code, notes, and snippets.

@Manouchehri
Created August 26, 2015 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Manouchehri/6093b8b2ac341900d414 to your computer and use it in GitHub Desktop.
Save Manouchehri/6093b8b2ac341900d414 to your computer and use it in GitHub Desktop.
Short one-liner to identify locally installed packages from the AUR3 that haven't been migrated to the AUR4 yet.
#!/bin/bash
for x in `yaourt -Qmq`; do yaourt -Si "$x" || echo "$x" >> missing.txt; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment