From: Ruediger Meier Date: Tue, 15 Nov 2011 18:55:23 +0000 (-0700) Subject: ls: another reword of generic size note X-Git-Tag: v8.15~75 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e36e6f2c6e95d6e23be805f7bab6c596b1818d22;p=platform%2Fupstream%2Fcoreutils.git ls: another reword of generic size note * src/system.h (emit_size_note): Use "unit" rather than "suffix", and move multiplication to example instead of in suffix list. See additional discussion in Bug#9939. --- diff --git a/src/system.h b/src/system.h index 1cbde92..ae8dcc2 100644 --- a/src/system.h +++ b/src/system.h @@ -516,8 +516,8 @@ static inline void emit_size_note (void) { fputs (_("\n\ -SIZE is an integer with an optional suffix (example: 10MB). Suffixes are:\n\ -KB 1000, K 1024, MB 1000*1000, M 1024*1024, and so on for G, T, P, E, Z, Y.\n\ +SIZE is an integer and optional unit (example: 10M is 10*1024*1024). Units\n\ +are K, M, G, T, P, E, Z, Y (powers of 1024) or KB, MB, ... (powers of 1000).\n\ "), stdout); }