74
74
_(" %s [options]\n"), program_invocation_short_name);
75
75
fputs(USAGE_OPTIONS, out);
76
fputs(_(" -b, --bytes show output in bytes\n"
77
" -k, --kilo show output in kilobytes\n"
78
" -m, --mega show output in megabytes\n"
79
" -g, --giga show output in gigabytes\n"
80
" --tera show output in terabytes\n"
81
" -h, --human show human readable output\n"
82
" --si use powers of 1000 not 1024\n"
83
" -l, --lohi show detailed low and high memory statistics\n"
84
" -o, --old use old format (no -/+buffers/cache line)\n"
85
" -t, --total show total for RAM + swap\n"
86
" -s N, --seconds N repeat printing every N seconds\n"
87
" -c N, --count N repeat printing N times\n"), out);
76
fputs(_(" -b, --bytes show output in bytes\n"), out);
77
fputs(_(" -k, --kilo show output in kilobytes\n"), out);
78
fputs(_(" -m, --mega show output in megabytes\n"), out);
79
fputs(_(" -g, --giga show output in gigabytes\n"), out);
80
fputs(_(" --tera show output in terabytes\n"), out);
81
fputs(_(" -h, --human show human-readable output\n"), out);
82
fputs(_(" --si use powers of 1000 not 1024\n"), out);
83
fputs(_(" -l, --lohi show detailed low and high memory statistics\n"), out);
84
fputs(_(" -o, --old use old format (without -/+buffers/cache line)\n"), out);
85
fputs(_(" -t, --total show total for RAM + swap\n"), out);
86
fputs(_(" -s N, --seconds N repeat printing every N seconds\n"), out);
87
fputs(_(" -c N, --count N repeat printing N times, then exit\n"), out);
88
88
fputs(USAGE_SEPARATOR, out);
89
fputs(_(" --help display this help text\n"), out);
89
fputs(_(" --help display this help and exit\n"), out);
90
90
fputs(USAGE_VERSION, out);
91
91
fprintf(out, USAGE_MAN_TAIL("free(1)"));