Skip to content
This repository has been archived by the owner on Oct 7, 2018. It is now read-only.
/ bunit Public archive

A dead simple binary unit conversion tool

License

Notifications You must be signed in to change notification settings

xlucas/bunit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bunit

A dead simple binary unit conversion tool.

Installation

pip install bunit

Usage

Hereinafter are few examples of how to use this tool.

Converting between two units

echo "1024" | bunit --in=kiB --out=MiB
1.0
echo "128" | bunit --in=b --out=B
16

Converting between units of the same system

echo "32" | bunit --in=GiB
+------+-------------+
| Unit |    Value    |
+------+-------------+
| kiB  | 33554432.00 |
| MiB  |   32768.00  |
| GiB  |    32.00    |
| TiB  |     0.03    |
| PiB  |     0.00    |
| EiB  |     0.00    |
| ZiB  |     0.00    |
| YiB  |     0.00    |
+------+-------------+

Converting between units of different systems

echo "1" | bunit --in=GiB --system=bytes
+------+---------------+
| Unit |     Value     |
+------+---------------+
|  B   | 1073741824.00 |
|  kB  |   1073741.82  |
|  MB  |    1073.74    |
|  GB  |      1.07     |
|  TB  |      0.00     |
|  PB  |      0.00     |
|  EB  |      0.00     |
|  ZB  |      0.00     |
|  YB  |      0.00     |
+------+---------------+

About

A dead simple binary unit conversion tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages