From b1b7fec80d205d11d6eca42a94b9f6b45eedd262 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 22 Jun 2021 08:33:14 -0500 Subject: Denys Vlasenko pointed out that other implementations use "t" as "total", and not many systems need to know "free terabytes". --- toys/other/free.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'toys/other') diff --git a/toys/other/free.c b/toys/other/free.c index d76e050d..6be1cdca 100644 --- a/toys/other/free.c +++ b/toys/other/free.c @@ -2,8 +2,8 @@ * * Copyright 2012 Elie De Brauwer -// Flag order is signifcant: b-t are units in order, FLAG_h-1 is unit mask -USE_FREE(NEWTOY(free, "htgmkb[!htgmkb]", TOYFLAG_USR|TOYFLAG_BIN)) +// Flag order is signifcant: b-g are units in order, FLAG_h-1 is unit mask +USE_FREE(NEWTOY(free, "hgmkb[!hgmkb]", TOYFLAG_USR|TOYFLAG_BIN)) config FREE bool "free" @@ -13,7 +13,7 @@ config FREE Display the total, free and used amount of physical memory and swap space. - -bkmgt Output units (default is bytes) + -bkmg Output units (default is bytes) -h Human readable (K=1024) */ -- cgit v1.2.3