aboutsummaryrefslogtreecommitdiff
path: root/mknod.c
diff options
context:
space:
mode:
Diffstat (limited to 'mknod.c')
-rw-r--r--mknod.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mknod.c b/mknod.c
index 81c846b98..c3389cc71 100644
--- a/mknod.c
+++ b/mknod.c
@@ -27,9 +27,9 @@
27#include <fcntl.h> 27#include <fcntl.h>
28#include <unistd.h> 28#include <unistd.h>
29 29
30static const char mknod_usage[] = "mknod file b|c|u|p major minor\n" 30static const char mknod_usage[] = "mknod [OPTION]... NAME TYPE MAJOR MINOR\n\n"
31"\tMake special files.\n" 31"Make block or character special files.\n\n"
32"\n" 32"Options:\n"
33"\tb:\tMake a block (buffered) device.\n" 33"\tb:\tMake a block (buffered) device.\n"
34"\tc or u:\tMake a character (un-buffered) device.\n" 34"\tc or u:\tMake a character (un-buffered) device.\n"
35"\tp:\tMake a named pipe. Major and minor are ignored for named pipes.\n"; 35"\tp:\tMake a named pipe. Major and minor are ignored for named pipes.\n";