Created
January 26, 2023 18:37
-
-
Save Kr3m/7983eb452c120cc237fad6b074463fec to your computer and use it in GitHub Desktop.
find assets in pk3 files in Quake 3.
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 file in *.pk3; do | |
if ( zipinfo -l "$file" | grep -q "$1"); then | |
echo "$file" | |
fi | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment