view toys/mkfifo.c @ 193:0efba0e70c43

Other chroots fall back to "/bin/sh -i", so add the -i.
author Rob Landley <rob@landley.net>
date Mon, 03 Dec 2007 20:05:14 -0600
parents 25447caf1b4b
children d4176f3f3835
line wrap: on
line source

/* 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);
}