What is the standard environment variable used to specify a temporary directory?
I am writing a script that uses a temporary directory, and I would like to allow it to read the user's chosen temporary directory from an environment variable. What environment 开发者_高级运维variable(s) should my script look at?
Windows: %TEMP%, or %TMP% Linux: $TMP, $TEMP
Those are the most common
精彩评论