55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
/* mkdir.c - Make directories
|
|
*
|
|
* Copyright 2012 Georgi Chorbadzhiyski <georgi@unixsol.org>
|
|
*
|
|
* See http://opengroup.org/onlinepubs/9699919799/utilities/mkdir.html
|
|
|
|
USE_MKDIR(NEWTOY(mkdir, "<1"USE_MKDIR_Z("Z:")"vp(parent)(parents)m:", TOYFLAG_BIN|TOYFLAG_UMASK))
|
|
|
|
config MKDIR
|
|
bool "mkdir"
|
|
default y
|
|
help
|
|
usage: mkdir [-vp] [-m MODE] [DIR...]
|
|
|
|
Create one or more directories.
|
|
|
|
-m Set permissions of directory to mode
|
|
-p Make parent directories as needed
|
|
-v Verbose
|
|
|
|
config MKDIR_Z
|
|
bool
|
|
default y
|
|
depends on MKDIR && !TOYBOX_LSM_NONE
|
|
help
|
|
usage: [-Z context]
|
|
|
|
-Z Set security context
|
|
*/
|
|
|
|
#define FOR_mkdir
|
|
#include "toys.h"
|
|
|
|
GLOBALS(
|
|
char *m, *Z;
|
|
)
|
|
|
|
void mkdir_main(void)
|
|
{
|
|
char **s;
|
|
mode_t mode = (0777&~toys.old_umask);
|
|
|
|
if (CFG_MKDIR_Z && (toys.optflags&FLAG_Z))
|
|
if (0>lsm_set_create(TT.Z))
|
|
perror_exit("-Z '%s' failed", TT.Z);
|
|
|
|
if (TT.m) mode = string_to_mode(TT.m, 0777);
|
|
|
|
// Note, -p and -v flags line up with mkpathat() flags
|
|
for (s=toys.optargs; *s; s++) {
|
|
if (mkpathat(AT_FDCWD, *s, mode, toys.optflags|MKPATHAT_MKLAST))
|
|
perror_msg("'%s'", *s);
|
|
}
|
|
}
|