From c68d7136feaa17f2ddfd4d56a325aeae8f8eec96 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Fri, 12 May 2023 18:35:41 -0400 Subject: sync --- command/tee.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'command/tee.c') 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; -- cgit v1.2.3-freya