diff options
author | Rob Landley <rob@landley.net> | 2012-08-25 14:25:22 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-08-25 14:25:22 -0500 |
commit | 3a9241add947cb6d24b5de7a8927517426a78795 (patch) | |
tree | d122ab6570439cd6b17c7d73ed8d4e085e0b8a95 /toys/mktemp.c | |
parent | 689f095bc976417bf50810fe59a3b3ac32b21105 (diff) | |
download | toybox-3a9241add947cb6d24b5de7a8927517426a78795.tar.gz |
Move commands into "posix", "lsb", and "other" menus/directories.
Diffstat (limited to 'toys/mktemp.c')
-rw-r--r-- | toys/mktemp.c | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/toys/mktemp.c b/toys/mktemp.c deleted file mode 100644 index e82256de..00000000 --- a/toys/mktemp.c +++ /dev/null @@ -1,54 +0,0 @@ -/* vi: set sw=4 ts=4: - * - * mktemp.c - Create a temporary file or directory. - * - * Copyright 2012 Elie De Brauwer <eliedebrauwer@gmail.com> - * - * Not in SUSv4. - -USE_MKTEMP(NEWTOY(mktemp, ">1(directory)d(tmpdir)p:", TOYFLAG_BIN)) - -config MKTEMP - bool "mktemp" - default y - help - usage: mktemp [OPTION] [TEMPLATE] - - Safely create a temporary file or directory and print its name. - TEMPLATE should end in 6 consecutive X's, the default - template is tmp.XXXXXX and the default directory is /tmp/. - - -d, --directory Create a directory, instead of a file - -p DIR, --tmpdir=DIR Use DIR as a base path - -*/ - -#include "toys.h" - -DEFINE_GLOBALS( - char * tmpdir; -) -#define TT this.mktemp - -void mktemp_main(void) -{ - int d_flag = toys.optflags & 2; - char *tmp, *path; - - tmp = *toys.optargs; - if (!tmp) tmp = "tmp.XXXXXX"; - if (!TT.tmpdir) TT.tmpdir = "/tmp/"; - - tmp = xmsprintf("%s/%s", TT.tmpdir, tmp); - - if (d_flag ? mkdtemp(tmp) == NULL : mkstemp(tmp) == -1) - perror_exit("Failed to create temporary %s", - d_flag ? "directory" : "file"); - - xputs(path = xrealpath(tmp)); - - if (CFG_TOYBOX_FREE) { - free(path); - free(tmp); - } -} |