From: Seung-Woo Kim Date: Fri, 4 Sep 2020 09:36:08 +0000 (+0900) Subject: Update usage with using same whitespace and adding -r option X-Git-Tag: accepted/tizen/unified/20200908.130519~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fba3095ec0f1e05902984f9c14152da638a9b92a;p=platform%2Fcore%2Fsystem%2Fmemps.git Update usage with using same whitespace and adding -r option There were tabs in usage print, so usage shows different indent. Use same whitespace for all the usage options. Also add missing '-r' option explaination showing rss of all processes. Change-Id: I58ad37f032914349ac90137624ec500f7760c709 Signed-off-by: Seung-Woo Kim --- diff --git a/memps.c b/memps.c index 49e7035..19c1ded 100644 --- a/memps.c +++ b/memps.c @@ -1369,10 +1369,11 @@ int main(int argc, char *argv[]) } if (usage) { fprintf(stderr, - "memps [-a] | [-v] | [-s] | [-f] \n" - " -s = sum (show only sum of each)\n" - " -f = all (show all processes via output file)\n" + "memps [-a] | [-v] | [-r] | [-s] | | [-f] \n" + " -s = sum (show only sum of each)\n" + " -f = all (show all processes via output file)\n" " -a = all (show all processes)\n" + " -r = all (show rss of all processes)\n" " -v = verbos (show all processes in detail)\n"); }