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 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" From: $OpenBSD: mktemp.1,v 1.8 1998/03/19 06:13:37 millert Exp $
36 .Nd make temporary file name (unique)
52 utility takes each of the given file name templates and overwrites a
53 portion of it to create a file name.
54 This file name is unique
55 and suitable for use by the application.
57 any file name with some number of
64 are replaced with the current process number and/or a
65 unique letter combination.
66 The number of unique file names
68 can return depends on the number of
75 selecting 1 of 56800235584 (62 ** 6) possible file names.
76 On case-insensitive file systems, the effective number of unique
77 names is significantly less; given six
80 will instead select 1 of 2176782336 (36 ** 6) possible unique file names.
84 can successfully generate a unique file name, the file
85 is created with mode 0600 (unless the
87 flag is given) and the filename is printed
94 will generate a template string based on the
97 .Dv _CS_DARWIN_USER_TEMP_DIR
98 configuration variable if available.
100 .Dv _CS_DARWIN_USER_TEMP_DIR
106 be taken to ensure that it is appropriate to use an environment variable
107 potentially supplied by the user.
109 If no arguments are passed or if only the
117 Any number of temporary files may be created in a single invocation,
118 including one based on the internal template resulting from the
124 utility is provided to allow shell scripts to safely use temporary files.
125 Traditionally, many shell scripts take the name of the program with
126 the pid as a suffix and use that as a temporary file name.
128 kind of naming scheme is predictable and the race condition it creates
129 is easy for an attacker to win.
130 A safer, though still inferior, approach
131 is to make a temporary directory using the same naming scheme.
133 this does allow one to guarantee that a temporary file will not be
134 subverted, it still allows a simple denial of service attack.
136 reasons it is suggested that
140 The available options are as follows:
141 .Bl -tag -width indent
143 Make a directory instead of a file.
145 Fail silently if an error occurs.
147 a script does not want error output to go to standard error.
149 Generate a template (using the supplied
153 if set) to create a filename template.
158 The temp file will be unlinked before
161 This is slightly better than
163 but still introduces a race condition.
165 option is not encouraged.
172 fragment illustrates a simple use of
174 where the script should quit if it cannot get a safe
176 .Bd -literal -offset indent
177 tempfoo=`basename $0`
178 TMPFILE=`mktemp /tmp/${tempfoo}.XXXXXX` || exit 1
179 echo "program output" >> $TMPFILE
182 To allow the use of $TMPDIR:
183 .Bd -literal -offset indent
184 tempfoo=`basename $0`
185 TMPFILE=`mktemp -t ${tempfoo}` || exit 1
186 echo "program output" >> $TMPFILE
189 In this case, we want the script to catch the error itself.
190 .Bd -literal -offset indent
191 tempfoo=`basename $0`
192 TMPFILE=`mktemp -q /tmp/${tempfoo}.XXXXXX`
193 if [ $? -ne 0 ]; then
194 echo "$0: Can't create temp file, exiting..."
209 This implementation was written independently based on the
214 This man page is taken from