hugo自动完成bash
hugo自动完成bash
生成bash shell的自动完成脚本
概要
生成bash shell的自动完成脚本。
此脚本依赖于’bash-completion’软件包。 如果尚未安装,您可以通过操作系统的软件包管理器安装它。
要在当前的shell会话中加载自动完成:
source <(hugo completion bash)
要在每个新会话中加载自动完成,请执行一次:
Linux:
hugo completion bash > /etc/bash_completion.d/hugo
macOS:
hugo completion bash > $(brew --prefix)/etc/bash_completion.d/hugo
您需要启动一个新的shell,才能使此设置生效。
hugo completion bash
选项
-h, --help bash命令的帮助
--no-descriptions 禁用自动完成描述
从父命令继承的选项
--clock string 设置Hugo使用的时钟,例如--clock 2021-11-06T22:30:00.00+09:00
--config string 配置文件(默认为hugo.yaml|json|toml)
--configDir string 配置目录(默认为"config")
--debug 调试输出
-d, --destination string 写入文件的文件系统路径
-e, --environment string 构建环境
--ignoreVendorPaths string 忽略与给定Glob模式匹配的模块路径中的任何_vendor
--logLevel string 日志级别(debug|info|warn|error)
--quiet 静默模式下构建
-s, --source string 以文件系统路径读取相对文件
--themesDir string 主题目录的文件系统路径
-v, --verbose 详细输出
另请参阅
- hugo completion - 为指定的shell生成自动完成脚本