I would like to be able to extract, using a bash script running on Linux, the FileVersion information embedded in my NSIS installers. The idea is that the bas script will call an external program that actually extract thatFileVersion info.
So far, I only managed to use 'strings':
Which results in two separate lines for FileVersion and its information. Thus a simple line manipulation program such as grep or sed won't suffice.strings -e l mywindowsexename.exe
Any tip or pointer to how to accomplish this?
Thanks.