1.1.1 • Published 5 years ago

@delucis/filesize-cli v1.1.1

Weekly downloads
1
License
GPL-3.0
Repository
github
Last release
5 years ago

@delucis/filesize-cli

Build Status Coverage Status

A minimal utility to print human-friendly file sizes from the command line. Provides an interface for @delucis/filesize, which in turn wraps filesize.

Installation

# install for global use
npm install -g @delucis/filesize-cli

Usage

filesize -v           # print version number to the terminal window
filesize -h           # show detailed help in the terminal window
filesize my-file.txt  # print file size using default options

Options

Most options that can be passed to filesize can be passed via the command line.

optioneffect
--base=<number>Number base of file size, default is 2
-b, --bitsEnables bit sizes, default is false
-e, --exponent=<number>Specifies the symbol via exponent, e.g. 2 is MB for base 2, default is -1
-f, --fullformEnables full form of unit of measure, default is false
-h, --helpDisplay detailed help text
-o, --output=<string>Output of function (array, exponent, object, or string), default is string
-r, --round=<number>Decimal place, default is 2
--spacer=<string>Character between the result and its suffix, default is " "
--standard=<string>Standard unit of measure, can be iec or jedec, default is jedec; can be overruled by --base
-u, --unixEnables unix style human readable output, e.g ls -lh, default is false
-v, --versionPrint filesize’s version number