blob: 52e53ee613a7f21d189f62a406d3438777aa8c95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/* mktemp.c - Create a temporary file or directory.
*
* Copyright 2012 Elie De Brauwer <eliedebrauwer@gmail.com>
*
* http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/mktemp.html
USE_MKTEMP(NEWTOY(mktemp, ">1q(directory)d(tmpdir)p:", TOYFLAG_BIN))
config MKTEMP
bool "mktemp"
default y
help
usage: mktemp [-dq] [-p DIR] [TEMPLATE]
Safely create a new file and print its name. The default TEMPLATE is
tmp.XXXXXX. The default DIR is $TMPDIR, or /tmp if $TMPDIR is not set.
-d, --directory Create directory instead of file
-p DIR, --tmpdir=DIR Put new file in DIR
-q Quiet
*/
#define FOR_mktemp
#include "toys.h"
GLOBALS(
char * tmpdir;
)
void mktemp_main(void)
{
int d_flag = toys.optflags & FLAG_d;
char *template = *toys.optargs;
int success;
if (!template) {
template = "tmp.XXXXXX";
}
if (!TT.tmpdir) TT.tmpdir = getenv("TMPDIR");
if (!TT.tmpdir) TT.tmpdir = "/tmp";
snprintf(toybuf, sizeof(toybuf), "%s/%s", TT.tmpdir, template);
if (d_flag ? mkdtemp(toybuf) == NULL : mkstemp(toybuf) == -1) {
if (toys.optflags & FLAG_q) {
toys.exitval = 1;
} else {
perror_exit("Failed to create temporary %s with template %s/%s",
d_flag ? "directory" : "file", TT.tmpdir, template);
}
}
xputs(toybuf);
}
|