diff options
author | des <des@FreeBSD.org> | 1999-05-11 14:23:16 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 1999-05-11 14:23:16 +0000 |
commit | 921d0267c5148cbda156565c216e589c13e2f9b9 (patch) | |
tree | 2e08e2ce7b345c855699884891c251bd70892b19 /usr.bin/touch | |
parent | 6c657432917771c5f2ccdeb0ef085745fbd9619b (diff) | |
download | FreeBSD-src-921d0267c5148cbda156565c216e589c13e2f9b9.zip FreeBSD-src-921d0267c5148cbda156565c216e589c13e2f9b9.tar.gz |
Sync usage() with man page.
PR: 11539
Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
Diffstat (limited to 'usr.bin/touch')
-rw-r--r-- | usr.bin/touch/touch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/touch/touch.c b/usr.bin/touch/touch.c index b5f19dc..1431ca3 100644 --- a/usr.bin/touch/touch.c +++ b/usr.bin/touch/touch.c @@ -343,7 +343,7 @@ err: rval = 1; void usage() { - (void)fprintf(stderr, - "usage: touch [-acfm] [-r file] [-t time] file ...\n"); + (void)fprintf(stderr, "usage: touch [-acfm] [-r file]" + " [-t [[CC]YY]MMDDhhmm[.SS]] file ...\n"); exit(1); } |