Created
January 13, 2016 15:31
-
-
Save cdeterman/6a5d453137e5fc992b2a to your computer and use it in GitHub Desktop.
ubuntu install multiple rpm files
This file contains hidden or 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 f in *.rpm; do | |
fakeroot alien --to-deb $f | |
done | |
for f in *.deb; do | |
sudo dpkg -i $f | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment