8.130 GETENV — Get an environmental variable

Synopsis:

CALL GETENV(NAME, VALUE)

Description:

Get the VALUE of the environmental variable NAME.

This intrinsic routine is provided for backwards compatibility with GNU Fortran 77. In new code, programmers should consider the use of the GET_ENVIRONMENT_VARIABLE — Get an environmental variable intrinsic defined by the Fortran 2003 standard.

Note that GETENV need not be thread-safe. It is the responsibility of the user to ensure that the environment is not being updated concurrently with a call to the GETENV intrinsic.

Class:

Subroutine

Arguments:
NAMEShall be of type CHARACTER and of default kind.
VALUEShall be of type CHARACTER and of default kind.
Return value:

Stores the value of NAME in VALUE. If VALUE is not large enough to hold the data, it is truncated. If NAME is not set, VALUE is filled with blanks.

Example:
PROGRAM test_getenv
  CHARACTER(len=255) :: homedir
  CALL getenv("HOME", homedir)
  WRITE (*,*) TRIM(homedir)
END PROGRAM
Standard:

GNU extension

See also:

GET_ENVIRONMENT_VARIABLE — Get an environmental variable