Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
google-cloud-sdk /
lib /
surface /
topic /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
__init__.py
1.21
KB
-rw-r--r--
1980-01-01 08:00
accessibility.py
1.61
KB
-rw-r--r--
1980-01-01 08:00
arg_files.py
7.38
KB
-rw-r--r--
1980-01-01 08:00
cli_trees.py
3.09
KB
-rw-r--r--
1980-01-01 08:00
client_certificate.py
4.02
KB
-rw-r--r--
1980-01-01 08:00
command_conventions.py
7.91
KB
-rw-r--r--
1980-01-01 08:00
configurations.py
4.16
KB
-rw-r--r--
1980-01-01 08:00
datetimes.py
4.16
KB
-rw-r--r--
1980-01-01 08:00
endpoint_override.py
2.6
KB
-rw-r--r--
1980-01-01 08:00
escaping.py
3.74
KB
-rw-r--r--
1980-01-01 08:00
filters.py
12.7
KB
-rw-r--r--
1980-01-01 08:00
flags_file.py
3.6
KB
-rw-r--r--
1980-01-01 08:00
formats.py
5.02
KB
-rw-r--r--
1980-01-01 08:00
gcloudignore.py
4.89
KB
-rw-r--r--
1980-01-01 08:00
offline_help.py
3.2
KB
-rw-r--r--
1980-01-01 08:00
projections.py
4.51
KB
-rw-r--r--
1980-01-01 08:00
resource_keys.py
3.14
KB
-rw-r--r--
1980-01-01 08:00
startup.py
3.62
KB
-rw-r--r--
1980-01-01 08:00
uninstall.py
2.16
KB
-rw-r--r--
1980-01-01 08:00
Save
Rename
# -*- coding: utf-8 -*- # # Copyright 2018 Google LLC. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Supplementary help for setting up gcloud offline help.""" from googlecloudsdk.calliope import base class OfflineHelp(base.TopicCommand): """Setting up gcloud command offline help. There are many ways to access `gcloud` command help. Only the first requires online access: * Browse https://cloud.google.com/sdk/gcloud/reference/ for the most recent Google Cloud CLI release online documents. * Add the *--help* flag to any command. This will render a man style document in a terminal pager. The document is always up to date with the command because it is generated by collating help text from the command itself. * Use the `gcloud beta interactive` shell which has as-you-type help. Like *--help*, the interactive help documents are always up to date with the `gcloud` installation. * Generate HTML documents in a local directory and point your browser to the generated *index.html* for offline browsing. Hover over a navigation item to focus the menu, hover to the left to expand it again. More details on this below. * Generate and install *man*(1) style documents on a local host. More details on this below. All of these methods have the same content, all generated from a Google Cloud CLI `gcloud` installation. The last two are user maintained and can become out of date. Either use them for one time offline access, or make them part of your Google Cloud CLI installation/update routine. ### Generating offline HTML documents To generate HTML documents for offline browsing: # Select an empty directory where the HTML and supporting *.css* and # *.js* files will be generated. HTML_DIR=<some-local-directory> # Generate the HTML in $HTML_DIR. # Should take ~1 min, 10 min or more on slower systems. gcloud meta generate-help-docs --html-dir=$HTML_DIR Then enter this URL in the browser address/search bar, where $HTML_DIR must be the actual path name of the directory: file://$HTML_DIR/index.html ### Generating offline manpage documents To generate man page documents for the *man*(1) command: # Select an empty directory where the man page files will be generated. MANPAGE_DIR=<some-local-directory> # Generate the man pages in $MANPAGE_DIR. # Should take ~1 min, 10 min or more on slower systems. gcloud meta generate-help-docs --manpage-dir=$MANPAGE_DIR # Append $MANPAGE_DIR to the MANPATH environment variable: export MANPATH=$MANPATH:$MANPAGE_dir Then run the man command on gcloud manpages: man gcloud info """