# HG changeset patch # User Rob Landley # Date 1402155740 18000 # Node ID d90f692a50d4bc919e3f67b19092b91a6e5ca111 # Parent 9fd2bcedbeb5b7dcaf1f8ddeabe9f81ca560f764 Make md5sum/sha1sum -b flag be "brief" output (just the hash). (It's not like systems implementing -b binary and -t text still matter.) diff -r 9fd2bcedbeb5 -r d90f692a50d4 toys/lsb/md5sum.c --- a/toys/lsb/md5sum.c Tue Jun 03 06:27:24 2014 -0500 +++ b/toys/lsb/md5sum.c Sat Jun 07 10:42:20 2014 -0500 @@ -8,8 +8,8 @@ * They're combined this way to share infrastructure, and because md5sum is * and LSB standard command, sha1sum is just a good idea. -USE_MD5SUM(NEWTOY(md5sum, NULL, TOYFLAG_USR|TOYFLAG_BIN)) -USE_MD5SUM_SHA1SUM(OLDTOY(sha1sum, md5sum, NULL, TOYFLAG_USR|TOYFLAG_BIN)) +USE_MD5SUM(NEWTOY(md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN)) +USE_MD5SUM_SHA1SUM(OLDTOY(sha1sum, md5sum, "b", TOYFLAG_USR|TOYFLAG_BIN)) config MD5SUM bool "md5sum" @@ -21,6 +21,8 @@ Output one hash (16 hex digits) for each input file, followed by filename. + -b brief (hash only, no filename) + config MD5SUM_SHA1SUM bool "sha1sum" default y @@ -28,9 +30,11 @@ help usage: sha1sum [FILE]... - calculate sha1 hash for each input file, reading from stdin if one. + calculate sha1 hash for each input file, reading from stdin if none. Output one hash (20 hex digits) for each input file, followed by filename. + + -b brief (hash only, no filename) */ #define FOR_md5sum @@ -230,7 +234,7 @@ // Wipe variables. Cryptographer paranoia. memset(&TT, 0, sizeof(TT)); - printf(" %s\n", name); + printf((toys.optflags & FLAG_b) ? "\n" : " %s\n", name); } void md5sum_main(void)