blob: a959a480615d6b39840d165cf1df6da4e5b8085f [file] [log] [blame]
/* vi: set sw=4 ts=4: */
/*
* mkfifo.c: Create a named pipe.
*
* See http://www.opengroup.org/onlinepubs/009695399/utilities/mkfifo.html
*/
#include "toys.h"
void mkfifo_main(void)
{
char *arg;
int i;
mode_t mode;
if (toys.optflags) {
char *end;
mode = (mode_t)strtol(toy.mkfifo.mode, &end, 8);
if (end<=toy.mkfifo.mode || *end || mode<0 || mode>0777)
error_exit("Invalid mode");
} else mode = 0644;
umask(0);
for (i = 0; (arg = toys.optargs[i]); i++)
if (mkfifo(arg, mode))
perror_exit(arg);
}