More documentation updates, and minor fixes to make things sync
[oweals/busybox.git] / coreutils / mkfifo.c
index c74402d4c992d14f4e02d0422a1f0c9f3c3729f5..b273df04633abc38665bffb0412d4999b8546bcd 100644 (file)
 #include <errno.h>
 
 static const char mkfifo_usage[] = "mkfifo [OPTIONS] name\n\n"
-       "Create the named fifo\n\n"
+       "Creates a named pipe (identical to 'mknod name p')\n\n"
 
        "Options:\n"
-       "\t-m\tcreate the fifo with the specified mode; default = a=rw-umask\n";
+       "\t-m\tcreate the pipe using the specified mode (default a=rw)\n";
 
 extern int mkfifo_main(int argc, char **argv)
 {