diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-25 22:22:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-06-25 22:22:35 +0000 |
commit | 6da7d8adc51dbf7ed61f90adee5c94012cfcd65d (patch) | |
tree | ee4eb65596f4e3a02795ba61f12a7a2e2845ad23 /usr.bin | |
parent | 43dc572ab14f8ec484209993716b9bfd5f1252e4 (diff) |
De-uglify usage
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/diff/diff.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/diff/diff.c b/usr.bin/diff/diff.c index cf27d4c2516..271ea318518 100644 --- a/usr.bin/diff/diff.c +++ b/usr.bin/diff/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.9 2003/06/25 22:14:43 millert Exp $ */ +/* $OpenBSD: diff.c,v 1.10 2003/06/25 22:22:34 millert Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. @@ -214,10 +214,10 @@ __dead void usage(void) { (void)fprintf(stderr, "usage: diff [-bitw] [-c | -e | -f | -h | -n | -u ] file1 file2\n" - " diff [-biw] -Dstring file1 file2\n" - " diff [-biwt] [-c | -e | -f | -h | -n | -u ] [-l] [-r] [-s] [-Sname]\n dir1 dir2\n" - " diff [-bitw] -Cnumber [file1 file2 | dir1 dir2]\n" - " diff [-bitw] -Unumber [file1 file2 | dir1 dir2]\n"); + " diff [-bitw] -Cnumber file1 file2\n" + " diff [-bitw] -Dstring file1 file2\n" + " diff [-bitw] -Unumber file1 file2\n" + " diff [-biwt] [-c | -e | -f | -h | -n | -u ] [-l] [-r] [-s] [-Sname]\n dir1 dir2\n"); exit(1); } |