Skip to content

Instantly share code, notes, and snippets.

@OneCDOnly
Created July 24, 2024 06:10
Show Gist options
  • Save OneCDOnly/e800f8cdf89f188ecb9f031622b1384a to your computer and use it in GitHub Desktop.
Save OneCDOnly/e800f8cdf89f188ecb9f031622b1384a to your computer and use it in GitHub Desktop.
extract from all qpkg files in current directory each into their own directory
for f in *.qpkg; do mkdir $(basename -- "$f" .qpkg); qbuild --extract $f $(basename -- "$f" .qpkg); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment