Use underscore.string on your commandline
npm install underscore.string.cliunderscore.string.cli
=====================
 
> Use underscore.string on your commandline
Installation
------------
npm install underscore.string.cli -g
Usage
-----
You can use all methods from underscore.string.
``bash
$ string
$ string camelize hello world
$ string camelize -hello-world -- true
$ string join \| -- foo bar moo boo
$ string levenshtein kitten -- kittah
You can pipe data through different methods
`bash
$ echo "foo bar" | string clean | string capitalize
js => s("foo bar").clean().capitalize().value()
=> Foo bar
``