From 2f35365eb3b18285f584aaac8a6deaa402dad6fe Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Wed, 14 Nov 2018 14:42:40 -0800 Subject: cmp: add --quiet and --silent synonyms for -s. I actually only need --quiet to build AOSP, but it seems weird to add --quiet as a synonym for -s but _not_ add the more obviously related --silent. --- toys/posix/cmp.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'toys/posix/cmp.c') diff --git a/toys/posix/cmp.c b/toys/posix/cmp.c index f4c34091..1a8f6900 100644 --- a/toys/posix/cmp.c +++ b/toys/posix/cmp.c @@ -4,7 +4,7 @@ * * See http://opengroup.org/onlinepubs/9699919799/utilities/cmp.html -USE_CMP(NEWTOY(cmp, "<2>2ls[!ls]", TOYFLAG_USR|TOYFLAG_BIN)) +USE_CMP(NEWTOY(cmp, "<2>2ls(silent)(quiet)[!ls]", TOYFLAG_USR|TOYFLAG_BIN)) config CMP bool "cmp" @@ -26,8 +26,6 @@ GLOBALS( char *name; ) -// This handles opening the file and - static void do_cmp(int fd, char *name) { int i, len1, len2, min_len, size = sizeof(toybuf)/2; -- cgit v1.2.3