ジャンプ先: 概要. 戻り値. 関連. MEL 例.

概要

getenv string

getenv は、取り消し不可能照会不可能、および編集不可能です。

引数は環境変数の名前です。このコマンドはその環境変数の値を返します。環境変数が存在しない場合、空の文字列が返されます。

戻り値

string環境変数値

関連

env, putenv

MEL 例

$s=`getenv "PATH"`;
// Result: :/usr/sbin:/usr/bsd:/sbin:/usr/bin:/bin:/etc:/usr/etc //

// Print all the folders of the plug-in path environment variable on separate lines.
// They are separated by semi-colons on Windows, colons otherwise.
{
    string $allparts[];
    string $separator = ( `about -nt` ) ? ";" : ":";
    tokenize( getenv("MAYA_PLUG_IN_PATH"), $separator, $allparts );
    int $i;
    for ( $i=0; $i < size($allparts); $i++ )
    {
        print( $i + "  " + $allparts[ $i ] + "\n" );
    }
}