Robert Goldman <[email protected]> writes: > Is there some way that a CL implementation can know whether it is > running under a Unix-alike like Cygwin or MinGW?
The OSTYPE environment variable maybe? (in an msys shell): $ echo $OSTYPE msys (in a cygwin shell): $ echo $OSTYPE cygwin Rudi
