npm install greeting-clicommand
$ npm i -g greeting-cli
`Usage
If this is your firt time of using. Please make sure to restart your terminal to try.- Default
`
// input
$ greet// output
$ Hello world!
`- Add
--name flag
`
// input
$ greet --name Andyyy// output
$ Hello Andyyy!
`- or use minimun
-n flag
`
// input
$ greet -n Andy// output
$ Hello Andy!
``