The Community is now in read-only mode to prepare for the launch of the new Flexera Community. During this time, you will be unable to register, log in, or access customer resources. Click
here
for more information.
So the Installanywhere 2009 exit codes actually map like this on Linux:0 --> 0 Success: The installation completed successfully without any warnings or errors.1 --> 1 The installation completed successfully, but one or more of the actions from the i...
On Linux the maximum range of exit code values is 0 to 255. As per the exit() manpage, only the least significant 8 bits (that is, status & 0377) shall be available to a waiting parent process.e.g.,$ bash -c 'exit 255' ; echo $?255$ bash -c 'exit 256...