Home

Awesome

<h1 align="center">bcal</h1> <p align="center"> <a href="https://github.com/jarun/bcal/releases/latest"><img src="https://img.shields.io/github/release/jarun/bcal.svg?maxAge=600&label=rel" alt="Latest release" /></a> <a href="https://repology.org/project/bcal/versions"><img src="https://repology.org/badge/tiny-repos/bcal.svg?header=repos" alt="Availability"></a> <a href="https://circleci.com/gh/jarun/workflows/bcal"><img src="https://img.shields.io/circleci/project/github/jarun/bcal.svg?label=circle%20ci" alt="CircleCI Status" /></a> <a href="https://github.com/jarun/bcal/actions"><img src="https://github.com/jarun/bcal/workflows/ci/badge.svg?branch=master" alt="GitHub CI Status" /></a> <a href="https://scan.coverity.com/projects/jarun-bcal"><img src="https://img.shields.io/coverity/scan/17148.svg" alt="Coverity Scan Build Status" /></a> <a href="https://github.com/jarun/bcal/blob/master/LICENSE"><img src="https://img.shields.io/badge/license-GPLv3-yellowgreen.svg?maxAge=2592000" alt="License" /></a> </p> <p align="center"> <a href="https://asciinema.org/a/168719"><img src="https://asciinema.org/a/168719.svg" alt="bcal_asciicast" width="600"/></a> </p>

bcal (Byte CALculator) is a REPL CLI utility for storage expression (e.g. "(2GiB * 2) / (2KiB >> 2)") evaluation, SI/IEC conversion, byte address calculation, base conversion and LBA/CHS calculation. It's very useful for those who deal with bits, bytes, addresses and binary prefixes frequently.

It has a bc mode for general-purpose numerical calculations. Alternatively, it can also invoke the more featured calc which works better with expressions involving multiple bases.

bcal uses SI and IEC binary prefixes and supports 64-bit Operating Systems only.

Table of Contents

Features

Installation

Dependencies

bcal is written in C and depends on standard libc and GNU Readline (or BSD Editline). It invokes GNU bc or calc for non-storage expressions.

To use calc:

export BCAL_USE_CALC=1

From a package manager

Install bcal from your package manager. If the version available is dated try an alternative installation method.

<details><summary>Packaging status (expand)</summary> <p> <br> <a href="https://repology.org/project/bcal/versions"><img src="https://repology.org/badge/vertical-allrepos/bcal.svg" alt="Packaging status"></a> </p> </details>

From source

If you have git installed, clone this repository. Otherwise, download the latest stable release or development version (risky).

Install to default location (/usr/local):

$ sudo make strip install

To link to libedit:

$ sudo make O_EL=1 strip install

To uninstall, run:

$ sudo make uninstall

PREFIX is supported, in case you want to install to a different location.

Termux

bcal can be compiled and installed from source in the Termux environment on aarch64 Android devices. Instructions:

$ wget https://github.com/jarun/bcal/archive/master.zip
$ unzip bcal-master.zip
$ cd bcal-master/
$ pkg install make clang readline-dev
$ make strip install

Usage

cmdline options

usage: bcal [-c N] [-f loc] [-s bytes] [expr]
            [N [unit]] [-b [expr]] [-m] [-d] [-h]

Storage expression calculator.

positional arguments:
 expr       expression in decimal/hex operands
 N [unit]   capacity in B/KiB/MiB/GiB/TiB/kB/MB/GB/TB
            https://en.wikipedia.org/wiki/Binary_prefix
            default unit is B (byte), case is ignored
            N can be decimal or '0x' prefixed hex value

optional arguments:
 -c N       show +ve integer N in binary, decimal, hex
 -f loc     convert CHS to LBA or LBA to CHS
            refer to the operational notes in man page
 -s bytes   sector size [default 512]
 -b [expr]  enter bc mode or evaluate expression in bc
 -m         show minimal output (e.g. decimal bytes)
 -d         enable debug information and logs
 -h         show this help

prompt keys:
 b          toggle bc mode
 r          show result from last operation
 s          show sizes of storage types
 ?          show prompt help
 q/double ↵ quit program

Operational notes

Examples

  1. Evaluate arithmetic expression of storage units.

    $ bcal "(5kb+2mb)/3"
    $ bcal "5 tb / 12"
    $ bcal "2.5mb*3"
    $ bcal "(2giB * 2) / (2kib >> 2)"
    
  2. Convert storage capacity to other units and get address, LBA.

    $ bcal 20140115 b
    $ bcal 0x1335053 B
    $ bcal 0xaabbcc kb
    $ bcal 0xdef Gib
    

    Note that the units are case-insensitive.

  3. Convert storage capacity, set sector size to 4096 to calculate LBA.

    $ bcal 0xaabbcc kb -s 4096
    
  4. Convert LBA to CHS.

    $ bcal -f l500
    $ bcal -f l0x600-18-0x7e
    $ bcal -f l0x300-0x12-0x7e
    
  5. Convert CHS to LBA.

    $ bcal -f c10-10-10
    $ bcal -f c0x10-0x10-0x10
    $ bcal -f c0x10-10-2-0x12
    $ bcal -f c-10-2-0x12
    $ bcal -f c0x10-10--0x12
    
  6. Show binary, decimal and hex representations of a number.

    $ bcal -c 20140115
    $ bcal -c 0b1001100110101000001010011
    $ bcal -c 0x1335053
    bcal> c 20140115  // Interactive mode
    
  7. Invoke bc.

    $ bcal -b '3.5 * 2.1 + 5.7'
    bcal> b  // Interactive mode
    bc vars: scale = 10, ibase = 10, last = r
    bc> 3.5 * 2.1 + 5.7
    
  8. Pipe input.

    $ printf '15 kib + 15 gib \n r / 5' | bcal -m
    $ printf '15 + 15 + 2' | bcal -bm
    
  9. Redirect from file.

    $ cat expr
    15 gib + 15 kib
    r / 5
    $ bcal -m < expr
    
  10. Use as a general-purpose calculator.

    $ bcal -b
    

Testing

Due to the nature of the project, it's extremely important to test existing functionality before raising any PR. bcal has several test cases written in test.py. To execute the test cases locally, install pytest and run:

$ make
$ python3 -m pytest test.py

Copyright

Copyright © 2016 Arun Prakash Jana