diff options
Diffstat (limited to '')
-rw-r--r-- | command/tee.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/command/tee.c b/command/tee.c index 0462517..364a13d 100644 --- a/command/tee.c +++ b/command/tee.c @@ -12,8 +12,8 @@ static struct { static void help(void) { printf("Usage: tee [-ai] [FILE]...\n\n"); printf("Copy stdin to each FILE, and also to stdout\n\n"); - printf("\t-a Append to the given FILEs, don't overwrite\n"); - printf("\t-i Ignore interrupt signals (SIGINT)\n"); + printf("\t-a\tAppend to the given FILEs, don't overwrite\n"); + printf("\t-i\tIgnore interrupt signals (SIGINT)\n"); exit(EXIT_SUCCESS); } @@ -52,7 +52,7 @@ static int short_arg(char c, char* next) { return ARG_UNUSED; } -COMMAND(tee) { +COMMAND(tee_cmd) { int start, i; FILE** files; |