playconsole-cli

(★ 154)

Fast, lightweight, and scriptable CLI for Google Play Console

File Explorer

  • .gitignore
  • .goreleaser.yaml
  • CONTRIBUTING.md
  • go.mod
  • go.sum
  • install.sh
  • LICENSE
  • Makefile
  • README.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

base64

View Details ▼

Encode or decode file or `stdin` to/from Base64, to `stdout`.

base64 {{path/to/file}}

Encode a file:

base64 {{[-i|--input]}} {{path/to/file}}

Encode a file to `stdout`:

base64 {{[-i|--input]}} {{path/to/file}}

Encode a file to `stdout`:

🔍

brew tap

View Details ▼

Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.

brew tap

List installed Homebrew taps:

brew tap {{github_username}}/{{github_repository_name}}

Tap a Git repository hosted on GitHub:

brew tap {{username}}/{{repository_name}} {{git_clone_url}}

Tap a Git repository hosted outside of GitHub:

🔍

gcloud

View Details ▼

The official CLI tool for Google Cloud Platform.
Some subcommands such as `app` and `init` have their own usage documentation.

gcloud config list

List all properties in one's active configuration:

gcloud auth login

Login to a Google account:

gcloud config set project {{project_name}}

Set the active project:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

npx

View Details ▼

This command is an alias of `npm exec`.

tldr npm exec

View documentation for the original command:

// repository documentation