2000-04-26 04:54:55 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini mktemp implementation for busybox
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000 by Daniel Jacobowitz
|
|
|
|
* Written by Daniel Jacobowitz <dan@debian.org>
|
|
|
|
*
|
2006-01-25 05:38:53 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-04-26 04:54:55 +05:30
|
|
|
*/
|
|
|
|
|
2006-06-03 02:26:16 +05:30
|
|
|
#include "busybox.h"
|
2000-04-26 04:54:55 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2001-03-09 20:06:42 +05:30
|
|
|
#include <string.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2000-04-26 04:54:55 +05:30
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int mktemp_main(int argc, char **argv)
|
2000-04-26 04:54:55 +05:30
|
|
|
{
|
2006-10-10 20:58:41 +05:30
|
|
|
unsigned long flags = getopt32(argc, argv, "dqt");
|
|
|
|
char *chp;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-12-02 23:24:01 +05:30
|
|
|
if (optind + 1 != argc)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2003-04-26 10:26:17 +05:30
|
|
|
|
2006-10-10 20:58:41 +05:30
|
|
|
chp = argv[optind];
|
|
|
|
|
|
|
|
if (flags & 4) {
|
|
|
|
char *dir = getenv("TMPDIR");
|
|
|
|
if (dir && *dir != '\0')
|
|
|
|
chp = concat_path_file(dir, chp);
|
|
|
|
else
|
|
|
|
chp = concat_path_file("/tmp/", chp);
|
|
|
|
}
|
|
|
|
|
2005-12-02 23:24:01 +05:30
|
|
|
if (flags & 1) {
|
2006-10-10 20:58:41 +05:30
|
|
|
if (mkdtemp(chp) == NULL)
|
2003-04-26 10:26:17 +05:30
|
|
|
return EXIT_FAILURE;
|
2006-10-10 20:58:41 +05:30
|
|
|
} else {
|
|
|
|
if (mkstemp(chp) < 0)
|
2003-04-26 10:26:17 +05:30
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2006-10-10 20:58:41 +05:30
|
|
|
puts(chp);
|
2003-04-26 10:26:17 +05:30
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-04-26 04:54:55 +05:30
|
|
|
}
|