Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/morilog/bijective-shortener-cli

An CLI Application for Bijectiive Shortener based on longening the base of the given number
https://github.com/morilog/bijective-shortener-cli

application bijective cli console php shortener

Last synced: 10 days ago
JSON representation

An CLI Application for Bijectiive Shortener based on longening the base of the given number

Awesome Lists containing this project

README

        

# Bijective Shortener CLI

### Installation
```
composer global require morilog/bijective-shortener-cli
```

### Usage
#### Encode integer number
```
// With default characters set

$ bshort 200
// output: AF

// With custom characters set

$ bshort 200 --set-chars=abcdefg
// output: eae
```
#### Decode encoded number
```
// With default characters set

$ bshort AF --decode
// output: 200

// With custom characters set

$ bshort eae --decode --set-chars=abcdefg
// output: 200
```

For more information about Bijective shortener functionality, please see [Reshadman/Php-Bijective-Shortener](https://github.com/reshadman/php-bijective-shortener)