changeset 447:0cc0c0e879d1

Correct cksum parameters and clarify -N option
author Elie De Brauwer <eliedebrauwer@gmail.com>
date Sat, 11 Feb 2012 13:48:04 +0100
parents b51faa4fe8e6
children fa3293dda216
files toys/cksum.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/toys/cksum.c	Fri Feb 10 13:36:48 2012 +0100
+++ b/toys/cksum.c	Sat Feb 11 13:48:04 2012 +0100
@@ -12,7 +12,7 @@
 	bool "cksum"
 	default y
 	help
-	  usage: cksum [-FL] [file...]
+	  usage: cksum [-IPLN] [file...]
 
 	  For each file, output crc32 checksum value, length and name of file.
 	  If no files listed, copy from stdin.  Filename "-" is a synonym for stdin.
@@ -20,7 +20,7 @@
 	  -L	Little endian (defaults to big endian)
 	  -P	Pre-inversion
 	  -I	Skip post-inversion
-	  -N	No length
+	  -N	Do not include length in CRC calculation
 */
 
 #include "toys.h"