Can I extract Info.plist from a ipa without unzipping it?

3k Views Asked by At

I got a .ipa file, I just want to get the Info.plist inside it, any method can I use to extract the Info.plist from the ipa file without unzip it?

1

There are 1 best solutions below

0
On

I use this on Linux to extract content to standard out in a shell:

unzip -p "/path/to/file.ipa" '*/Info.plist'