Created
July 24, 2024 06:10
-
-
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
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
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