diff options
Diffstat (limited to '')
-rw-r--r-- | src/commands/cat.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/commands/cat.c b/src/commands/cat.c index e2c471b..f5622e8 100644 --- a/src/commands/cat.c +++ b/src/commands/cat.c @@ -24,12 +24,12 @@ static bool printable(char c) { static void help() { printf("Usage: cat [-nbvteA] [FILE]...\n\n"); printf("Print FILEs to stdout\n\n"); - printf("-n Number output lines\n"); - printf("-b Number nonempty lines\n"); - printf("-v Show nonprinting characters as ^x or M-x\n"); - printf("-t ...and tabs as ^I\n"); - printf("-e ...and end lines with $\n"); - printf("-A Same as -vte\n"); + printf("-n Number output lines\n"); + printf("-b Number nonempty lines\n"); + printf("-v Show nonprinting characters as ^x or M-x\n"); + printf("-t ...and tabs as ^I\n"); + printf("-e ...and end lines with $\n"); + printf("-A Same as -vte\n"); exit(EXIT_SUCCESS); } |