1 .\" Copyright (c) 1989, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\" must display the following acknowledgement:
14 .\" This product includes software developed by the University of
15 .\" California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\" may be used to endorse or promote products derived from this software
18 .\" without specific prior written permission.
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 .\" From: $OpenBSD: mktemp.1,v 1.8 1998/03/19 06:13:37 millert Exp $
33 .\" $FreeBSD: src/usr.bin/mktemp/mktemp.1,v 1.21 2006/09/29 15:20:46 ru Exp $
40 .Nd make temporary file name (unique)
56 utility takes each of the given file name templates and overwrites a
57 portion of it to create a file name.
58 This file name is unique
59 and suitable for use by the application.
61 any file name with some number of
68 are replaced with the current process number and/or a
69 unique letter combination.
70 The number of unique file names
72 can return depends on the number of
79 selecting 1 of 56800235584 (62 ** 6) possible file names.
83 can successfully generate a unique file name, the file
84 is created with mode 0600 (unless the
86 flag is given) and the filename is printed
93 will generate a template string based on the
97 environment variable if set.
98 The default location if
103 be taken to ensure that it is appropriate to use an environment variable
104 potentially supplied by the user.
106 Any number of temporary files may be created in a single invocation,
107 including one based on the internal template resulting from the
113 utility is provided to allow shell scripts to safely use temporary files.
114 Traditionally, many shell scripts take the name of the program with
115 the pid as a suffix and use that as a temporary file name.
117 kind of naming scheme is predictable and the race condition it creates
118 is easy for an attacker to win.
119 A safer, though still inferior, approach
120 is to make a temporary directory using the same naming scheme.
122 this does allow one to guarantee that a temporary file will not be
123 subverted, it still allows a simple denial of service attack.
125 reasons it is suggested that
129 The available options are as follows:
130 .Bl -tag -width indent
132 Make a directory instead of a file.
134 Fail silently if an error occurs.
136 a script does not want error output to go to standard error.
138 Generate a template (using the supplied
142 if set) to create a filename template.
147 The temp file will be unlinked before
150 This is slightly better than
152 but still introduces a race condition.
154 option is not encouraged.
160 exits 0 on success, and 1 if an error occurs.
164 fragment illustrates a simple use of
166 where the script should quit if it cannot get a safe
168 .Bd -literal -offset indent
169 tempfoo=`basename $0`
170 TMPFILE=`mktemp /tmp/${tempfoo}.XXXXXX` || exit 1
171 echo "program output" >> $TMPFILE
174 To allow the use of $TMPDIR:
175 .Bd -literal -offset indent
176 tempfoo=`basename $0`
177 TMPFILE=`mktemp -t ${tempfoo}` || exit 1
178 echo "program output" >> $TMPFILE
181 In this case, we want the script to catch the error itself.
182 .Bd -literal -offset indent
183 tempfoo=`basename $0`
184 TMPFILE=`mktemp -q /tmp/${tempfoo}.XXXXXX`
185 if [ $? -ne 0 ]; then
186 echo "$0: Can't create temp file, exiting..."
200 This implementation was written independently based on the
205 This man page is taken from