Skip to content

Instantly share code, notes, and snippets.

@cdeterman
Created January 13, 2016 15:31
Show Gist options
  • Save cdeterman/6a5d453137e5fc992b2a to your computer and use it in GitHub Desktop.
Save cdeterman/6a5d453137e5fc992b2a to your computer and use it in GitHub Desktop.
ubuntu install multiple rpm files
#/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