11 lines
829 B
Markdown
11 lines
829 B
Markdown
### 10.2.5. 命令行实现
|
||
|
||
Spring Boot CLI启动脚本为[BASH](http://en.wikipedia.org/wiki/Bash_%28Unix_shell%29)和[zsh](http://en.wikipedia.org/wiki/Zsh) shells提供完整的命令行实现。你可以在任何shell中source脚本(名称也是spring),或将它放到你个人或系统范围的bash实现初始化中。在一个Debian系统里,系统范围的脚本位于`/shell-completion/bash`下,当一个新的shell启动时该目录下的所有脚本都被执行。想要手动运行该脚本,例如,你已经使用GVM进行安装了:
|
||
```shell
|
||
$ . ~/.gvm/springboot/current/shell-completion/bash/spring
|
||
$ spring <HIT TAB HERE>
|
||
grab help jar run test version
|
||
```
|
||
|
||
**注**:如果你使用Homebrew或MacPorts安装Spring Boot CLI,命令行实现脚本会自动注册到你的shell。
|