Skip to content

Instantly share code, notes, and snippets.

@drewbug
Created January 22, 2016 22:06
Show Gist options
  • Save drewbug/b9e5344d453fe2393cba to your computer and use it in GitHub Desktop.
Save drewbug/b9e5344d453fe2393cba to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
ARGV.each do |rpm|
dest_dir = File.basename rpm, '.rpm'
Dir.mkdir dest_dir
Dir.chdir dest_dir do
`rpm2cpio.pl #{rpm} | cpio -i -d`
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment