Introducing GCP’s new interactive CLI
Seher Aylin Altiok
Product Manager
If you develop applications on Google Cloud Platform (GCP), you probably spend a lot of time in the GCP command line. But as we grow our GCP services, the number of commands and flags is growing by leaps and bounds. So today, we’re introducing a new command line interface (CLI) that lets you discover—and use—all these commands more efficiently: gcloud interactive.
The Google Cloud SDK offers a variety of command line tools to interact with GCP, namely:
- gcloud — GCP’s primary CLI
- gsutil — CLI to interact with Google Cloud Storage
- bq — CLI to interact with Google BigQuery
- kubectl — Kubernetes Engine’s CLI
The interactive environment also supports standard bash features like:
- intermixing gcloud and standard bash commands
- running commands like cd and pwd, and set/use shell variables across command executions
- running and controlling background processes
- TAB-completing shell variables, and much more!
You can also create and run bash scripts while you're in the interactive environment.
For example, the following script iterates all compute instances and restarts the ones that have been TERMINATED.
Getting started with gcloud interactive
Once you’ve installed the Google Cloud SDK, go ahead and try out gcloud interactive: (if you haven’t installed it yet, you can see instructions in this link)1.Make sure your SDK components are up to date.
2. Install the gcloud alpha component.
3. Start gcloud interactive
[Optional] Enable interactive mode for gsutil, bq and kubectl (it's enabled for gcloud by default.) Note that this may take a couple of minutes to complete, but you only need to run this command once.
Tips:
- When you want to learn more about the current command you typed, hit F8 to open the reference page in the browser.
- You can set the prompt context to any command group. This is useful if you mostly work with certain command groups, and saves you having to type the full command every time. You can do this by typing the command group and hitting F7.
- Toggle the interactive help area on and off with the F2 key.
- Use the F3 key to toggle the command line edit mode between emacs and vi.