Created
April 3, 2013 05:42
-
-
Save jeffery/5298713 to your computer and use it in GitHub Desktop.
List installed Packages grouped by Repository for openSUSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
for repo in `zypper repos --uri | tail -n+3 | awk -F ' ' '{ print $1 }'` | |
do | |
zypper se -sir "$repo" | |
echo | |
echo | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment