From b5467d53a2d4a146ea426de10bd7d4c878982996 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Mangano?= Date: Tue, 1 Jan 2013 22:30:17 +0100 Subject: [PATCH] tweak help --- opustags.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/opustags.c b/opustags.c index 20af598..635319d 100644 --- a/opustags.c +++ b/opustags.c @@ -172,7 +172,7 @@ const char *help = " -a, --add FIELD=VALUE add a field\n" " -s, --set FIELD=VALUE delete then add a field\n" " -D, --delete-all delete all the fields!\n" - " -S, --set-all read the fields to set from stdin\n"; + " -S, --set-all read the fields from stdin\n"; struct option options[] = { {"help", no_argument, 0, 'h'}, @@ -240,7 +240,8 @@ int main(int argc, char **argv){ if(print_help){ puts(version); puts(usage); - fputs(help, stdout); + puts(help); + puts("See the man page for extensive documentation."); return EXIT_SUCCESS; } if(optind != argc - 1){