**Description** Add the ability to pass token/password to hub-tool using CLI switches or environment vars. Other CLI's like `docker` do this for comparison. ``` $ hub-tool/hub-tool login <user> --password-stdin <<<$(echo "password") ``` Do something similar with LastPass's CLI ``` $ docker login -u $(lpass show --username 'dockeruser') --password-stdin <<<$(lpass show --password 'dockerpass') ``` ### References - https://docs.docker.com/engine/reference/commandline/login/