2000-04-26 07:24:55 +08:00
|
|
|
/* 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 08:08:53 +08:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2000-04-26 07:24:55 +08:00
|
|
|
*/
|
|
|
|
|
2006-06-03 04:56:16 +08:00
|
|
|
#include "busybox.h"
|
2000-04-26 07:24:55 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
2001-03-09 22:36:42 +08:00
|
|
|
#include <string.h>
|
2001-01-27 16:24:39 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
2000-04-26 07:24:55 +08:00
|
|
|
|
2006-03-07 04:47:33 +08:00
|
|
|
int mktemp_main(int argc, char **argv)
|
2000-04-26 07:24:55 +08:00
|
|
|
{
|
2006-10-04 05:00:06 +08:00
|
|
|
unsigned long flags = getopt32(argc, argv, "dq");
|
2006-01-25 08:08:53 +08:00
|
|
|
|
2005-12-03 01:54:01 +08:00
|
|
|
if (optind + 1 != argc)
|
2003-03-19 17:13:01 +08:00
|
|
|
bb_show_usage();
|
2003-04-26 12:56:17 +08:00
|
|
|
|
2005-12-03 01:54:01 +08:00
|
|
|
if (flags & 1) {
|
|
|
|
if (mkdtemp(argv[optind]) == NULL)
|
2003-04-26 12:56:17 +08:00
|
|
|
return EXIT_FAILURE;
|
2005-12-03 01:54:01 +08:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (mkstemp(argv[optind]) < 0)
|
2003-04-26 12:56:17 +08:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
|
2005-12-03 01:54:01 +08:00
|
|
|
puts(argv[optind]);
|
2003-04-26 12:56:17 +08:00
|
|
|
|
2000-12-01 10:55:13 +08:00
|
|
|
return EXIT_SUCCESS;
|
2000-04-26 07:24:55 +08:00
|
|
|
}
|