0.1.1 • Published 5 years ago

cmpr-cli v0.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

cmpr-cli

Build Status Coverage Status

Compare two numbers in CLI

Usage

> cmpr gt 3 2 # no output because 3 ig great that 3

> cmpr gt 2 3 
Error: 2 is not great than 3 # Error output and exit code is 1. Because 2 is not great that 3

> cmpr lt 3 2
Error: 3 is not less than 2

> cmpr lte 3 3 # No output and exit code is 0. Because 3 is less than ot equal 3

> cmpr gte 5 3