1. Usage: find-process [options] <keyword>
    2. Options:
    3. -V, --version output the version number
    4. -t, --type <type> find process by keyword type (pid|port|name)
    5. -p, --port find process by port
    6. -h, --help output usage information
    7. Examples:
    8. $ find-process node # find by name "node"
    9. $ find-process 111 # find by pid "111"
    10. $ find-process -p 80 # find by port "80"
    11. $ find-process -t port 80 # find by port "80"