igoose1 / human

Patched version of https://git.z3bra.org/human/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

human
=====

Human is a small program which outpus numbers into a human readable
format. By default, it tries to detect the best factorisation, but you
can force its output.

Installation
------------
The following commands would build and install the program just fine:

	$ make
	# make install

Usage
-----
You can adjust the number of decimals with the `SCALE` environment
variable.

    # convert 123456 to the best human factorisation
    human 123456
    121K

    # output 2 decimals
    SCALE=2 human 123456
    120.56K

    SCALE=3 human -m 123456
    0.118M

    # convert from a different factorization level
    SCALE=6 human -g 123M
    0.120117G

Well, that's it (and that's enough !). For more informations, see the
human(1) manpage.

License
-------
See the LICENSE file provided with this software

About

Patched version of https://git.z3bra.org/human/index.html

License:Do What The F*ck You Want To Public License


Languages

Language:C 76.9%Language:Roff 15.2%Language:Makefile 7.9%