The exec command finds the latest pod from the deployment and runs `kubectl exec -ti POD bash` to get you into it. It spares you from having to manually find and type it. ## Examples kubes exec kubes exec sh kubes exec ls -l ## Multiple Deployments If you have have multiple deployments in your ``.kubes/resources` then the command will use the first deployment by default. You can specify the specfic deployment with the `--name` option. Examples: kubes exec --name demo-web kubes exec --name demo-clock kubes exec --name demo-worker kubes exec --name demo-web sh kubes exec --name demo-web ls -l