summaryrefslogtreecommitdiff
path: root/command/tee.c
diff options
context:
space:
mode:
Diffstat (limited to 'command/tee.c')
-rw-r--r--command/tee.c6
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;