I always heard that the proper way to find the temporary folder on a UNIX machine was to look at the TMP environment variable. When writing code that worked on Windows as well as Linux, I would check for TEMP and TMP.

Today, I discovered that my Ubuntu install does not have that environment variable at all.

I know it seems you can always count on /tmp being there to put your temporary files in, but I understood that TMP was the way the user could tell you to put the temporary files someplace else.

Is that still the case?

link|improve this question

76% accept rate
How is this too localized? I'm pretty sure more than a couple people use temporary files in Linux. – Jefromi Mar 12 '10 at 19:09
feedback

4 Answers

up vote 0 down vote accepted

You are probably thinking of TMPDIR.

This variable shall represent a pathname of a directory made available for programs that need a place to create temporary files.

link|improve this answer
feedback

POSIX/FHS says that /tmp is the root for temporary files, although some programs may choose to examine $TEMP or $TMP instead.

link|improve this answer
pathname.com/fhs/pub/fhs-2.3.html#TMPTEMPORARYFILES – Roger Pate Mar 12 '10 at 19:12
feedback

You can set the TMP or TEMP environment variable in /etc/environment and it will be available.

link|improve this answer
feedback

A good way to create a temporary directory is using mktemp, e.g.

mktemp -d -t

This way, you can even make sure, that your file names won't collide with existing files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.