repak
repak copied to clipboard
[Feat] Allow wildcards for -i option
Allow wildcards, or maybe even full regex, so that you can include files that match a particular pattern.
In my use case I was looking to extract all of the ini files from a pak, so being able to do .\repak.exe unpack -i *.ini pakname.pak would be nice.
Globbing is supported but single * will not match more than one path component. Use ** to match all directories and then *.ini to match ini files: e.g. repak unpack -i '**/*.ini' <pak>
I'll leave this open since the documentation could be improved with some globbing examples.